efinity
| Properties | |
|---|---|
| Spec name | efinity |
| Implementation name | efinity |
| Spec version | 3012 |
| SS58 Format | 1110 |
| Token symbol | EFI |
| Token decimals | 18 |
Aura
AuraExt
Authorship
Calls
set_uncles
Provide a set of uncles.
Attributes
| Name | Type |
|---|---|
| new_uncles | Vec<T::Header> |
Python
call = substrate.compose_call(
'Authorship', 'set_uncles', {
'new_uncles': [
{
'digest': {
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': (
'[u8; 4]',
'Bytes',
),
'PreRuntime': (
'[u8; 4]',
'Bytes',
),
'RuntimeEnvironmentUpdated': None,
'Seal': (
'[u8; 4]',
'Bytes',
),
},
],
},
'extrinsics_root': '[u8; 32]',
'number': 'u32',
'parent_hash': '[u8; 32]',
'state_root': '[u8; 32]',
},
],
}
)
Storage functions
Author
Author of current block.
Python
result = substrate.query(
'Authorship', 'Author', []
)
Return value
'AccountId'
DidSetUncles
Whether uncles were already set in this block.
Python
result = substrate.query(
'Authorship', 'DidSetUncles', []
)
Return value
'bool'
Uncles
Uncles
Python
result = substrate.query(
'Authorship', 'Uncles', []
)
Return value
[{'InclusionHeight': 'u32', 'Uncle': ('[u8; 32]', (None, 'AccountId'))}]
Constants
UncleGenerations
The number of blocks back we should accept uncles.
This means that we will deal with uncle-parents that are
UncleGenerations + 1 before now.
Value
5
Python
constant = substrate.get_constant('Authorship', 'UncleGenerations')
Errors
GenesisUncle
The uncle is genesis.
InvalidUncleParent
The uncle parent not in the chain.
OldUncle
The uncle isn't recent enough to be included.
TooHighUncle
The uncle is too high in chain.
TooManyUncles
Too many uncles.
UncleAlreadyIncluded
The uncle is already included.
UnclesAlreadySet
Uncles already set in the block.
Balances
Calls
force_transfer
Exactly as transfer, except the origin must be root and the source account may be
specified.
# <weight>
- Same as transfer, but additional read and write because the source account is not
assumed to be in the overlay.
# </weight>
Attributes
| Name | Type |
|---|---|
| source | AccountIdLookupOf<T> |
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python
call = substrate.compose_call(
'Balances', 'force_transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'source': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
force_unreserve
Unreserve some balance from a user by force.
Can only be called by ROOT.
Attributes
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| amount | T::Balance |
Python
call = substrate.compose_call(
'Balances', 'force_unreserve', {
'amount': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
set_balance
Set the balances of a given account.
This will alter FreeBalance and ReservedBalance in storage. it will
also alter the total issuance of the system (TotalIssuance) appropriately.
If the new free or reserved balance is below the existential deposit,
it will reset the account nonce (frame_system::AccountNonce).
The dispatch origin for this call is root.
Attributes
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| new_free | T::Balance |
| new_reserved | T::Balance |
Python
call = substrate.compose_call(
'Balances', 'set_balance', {
'new_free': 'u128',
'new_reserved': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
transfer
Transfer some liquid free balance to another account.
transfer will set the FreeBalance of the sender and receiver.
If the sender's account is below the existential deposit as a result
of the transfer, the account will be reaped.
The dispatch origin for this call must be Signed by the transactor.
# <weight> - Dependent on arguments but not critical, given proper implementations for input config types. See related functions below. - It contains a limited number of reads and writes internally and no complex computation.
Related functions:
ensure_can_withdrawis always called internally but has a bounded complexity.- Transferring balances to accounts that did not exist before will cause
T::OnNewAccount::on_new_accountto be called. - Removing enough funds from an account will trigger
T::DustRemoval::on_unbalanced. transfer_keep_aliveworks the same way astransfer, but has an additional check that the transfer will not kill the origin account.
- Origin account is already in memory, so no DB operations for them. # </weight>
Attributes
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python
call = substrate.compose_call(
'Balances', 'transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
transfer_all
Transfer the entire transferable balance from the caller account.
NOTE: This function only attempts to transfer transferable balances. This means that
any locked, reserved, or existential deposits (when keep_alive is true), will not be
transferred by this function. To ensure that this function results in a killed account,
you might need to prepare the account by removing any reference counters, storage
deposits, etc...
The dispatch origin of this call must be Signed.
dest: The recipient of the transfer.keep_alive: A boolean to determine if thetransfer_alloperation should send all of the funds the account has, causing the sender account to be killed (false), or transfer everything except at least the existential deposit, which will guarantee to keep the sender account alive (true). # <weight>- O(1). Just like transfer, but reading the user's transferable balance first. #</weight>
Attributes
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| keep_alive | bool |
Python
call = substrate.compose_call(
'Balances', 'transfer_all', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'keep_alive': 'bool',
}
)
transfer_keep_alive
Same as the [transfer] call, but with a check that the transfer will not kill the
origin account.
99% of the time you want [transfer] instead.
Attributes
| Name | Type |
|---|---|
| dest | AccountIdLookupOf<T> |
| value | T::Balance |
Python
call = substrate.compose_call(
'Balances', 'transfer_keep_alive', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
Events
BalanceSet
A balance was set by root.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| free | T::Balance |
u128 |
| reserved | T::Balance |
u128 |
Deposit
Some amount was deposited (e.g. for transaction fees).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
DustLost
An account was removed whose balance was non-zero but below ExistentialDeposit, resulting in an outright loss.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Endowed
An account was created with some free balance.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| free_balance | T::Balance |
u128 |
ReserveRepatriated
Some balance was moved from the reserve of the first account to the second account. Final argument indicates the destination balance type.
Attributes
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
| destination_status | Status |
('Free', 'Reserved') |
Reserved
Some balance was reserved (moved from free to reserved).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Slashed
Some amount was removed from the account (e.g. for misbehavior).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Transfer
Transfer succeeded.
Attributes
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Unreserved
Some balance was unreserved (moved from reserved to free).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Withdraw
Some amount was withdrawn from the account (e.g. for transaction fees).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Storage functions
Account
The Balances pallet example of storing the balance of an account.
# Example
nocompile
impl pallet_balances::Config for Runtime {
type AccountStore = StorageMapShim<Self::Account<Runtime>, frame_system::Provider<Runtime>, AccountId, Self::AccountData<Balance>>
}
You can also store the balance of an account in the System pallet.
# Example
nocompile
impl pallet_balances::Config for Runtime {
type AccountStore = System
}
But this comes with tradeoffs, storing account balances in the system pallet stores
frame_system data alongside the account data contrary to storing account balances in the
Balances pallet, which uses a StorageMap to store balances data only.
NOTE: This is only used in the case that this pallet is used to store balances.
Python
result = substrate.query(
'Balances', 'Account', ['AccountId']
)
Return value
{
'fee_frozen': 'u128',
'free': 'u128',
'misc_frozen': 'u128',
'reserved': 'u128',
}
Locks
Any liquidity locks on some account balances. NOTE: Should only be accessed when setting, changing and freeing a lock.
Python
result = substrate.query(
'Balances', 'Locks', ['AccountId']
)
Return value
[{'amount': 'u128', 'id': '[u8; 8]', 'reasons': ('Fee', 'Misc', 'All')}]
Reserves
Named reserves on some account balances.
Python
result = substrate.query(
'Balances', 'Reserves', ['AccountId']
)
Return value
[{'amount': 'u128', 'id': '[u8; 8]'}]
StorageVersion
Storage version of the pallet.
This is set to v2.0.0 for new networks.
Python
result = substrate.query(
'Balances', 'StorageVersion', []
)
Return value
('V1_0_0', 'V2_0_0')
TotalIssuance
The total units issued in the system.
Python
result = substrate.query(
'Balances', 'TotalIssuance', []
)
Return value
'u128'
Constants
ExistentialDeposit
The minimum amount required to keep an account open.
Value
1000000000000000000
Python
constant = substrate.get_constant('Balances', 'ExistentialDeposit')
MaxLocks
The maximum number of locks that should exist on an account. Not strictly enforced, but used for weight estimation.
Value
50
Python
constant = substrate.get_constant('Balances', 'MaxLocks')
MaxReserves
The maximum number of named reserves that can exist on an account.
Value
50
Python
constant = substrate.get_constant('Balances', 'MaxReserves')
Errors
DeadAccount
Beneficiary account must pre-exist
ExistentialDeposit
Value too low to create account due to existential deposit
ExistingVestingSchedule
A vesting schedule already exists for this account
InsufficientBalance
Balance too low to send value.
KeepAlive
Transfer/payment would kill account
LiquidityRestrictions
Account liquidity restrictions prevent withdrawal
TooManyReserves
Number of named reserves exceed MaxReserves
VestingBalance
Vesting balance too high to send value
Bounties
Calls
accept_curator
Accept the curator role for a bounty. A deposit will be reserved from curator and refund upon successful payout.
May only be called from the curator.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python
call = substrate.compose_call(
'Bounties', 'accept_curator', {'bounty_id': 'u32'}
)
approve_bounty
Approve a bounty proposal. At a later time, the bounty will be funded and become active and the original deposit will be returned.
May only be called from T::ApproveOrigin.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python
call = substrate.compose_call(
'Bounties', 'approve_bounty', {'bounty_id': 'u32'}
)
award_bounty
Award bounty to a beneficiary account. The beneficiary will be able to claim the funds after a delay.
The dispatch origin for this call must be the curator of this bounty.
bounty_id: Bounty ID to award.beneficiary: The beneficiary account whom will receive the payout.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
| beneficiary | AccountIdLookupOf<T> |
Python
call = substrate.compose_call(
'Bounties', 'award_bounty', {
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'bounty_id': 'u32',
}
)
claim_bounty
Claim the payout from an awarded bounty after payout delay.
The dispatch origin for this call must be the beneficiary of this bounty.
bounty_id: Bounty ID to claim.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python
call = substrate.compose_call(
'Bounties', 'claim_bounty', {'bounty_id': 'u32'}
)
close_bounty
Cancel a proposed or active bounty. All the funds will be sent to treasury and the curator deposit will be unreserved if possible.
Only T::RejectOrigin is able to cancel a bounty.
bounty_id: Bounty ID to cancel.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python
call = substrate.compose_call(
'Bounties', 'close_bounty', {'bounty_id': 'u32'}
)
extend_bounty_expiry
Extend the expiry time of an active bounty.
The dispatch origin for this call must be the curator of this bounty.
bounty_id: Bounty ID to extend.remark: additional information.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
| remark | Vec<u8> |
Python
call = substrate.compose_call(
'Bounties', 'extend_bounty_expiry', {
'bounty_id': 'u32',
'remark': 'Bytes',
}
)
propose_bounty
Propose a new bounty.
The dispatch origin for this call must be Signed.
Payment: TipReportDepositBase will be reserved from the origin account, as well as
DataDepositPerByte for each byte in reason. It will be unreserved upon approval,
or slashed when rejected.
curator: The curator account whom will manage this bounty.fee: The curator fee.value: The total payment amount of this bounty, curator fee included.description: The description of this bounty.
Attributes
| Name | Type |
|---|---|
| value | BalanceOf<T, I> |
| description | Vec<u8> |
Python
call = substrate.compose_call(
'Bounties', 'propose_bounty', {
'description': 'Bytes',
'value': 'u128',
}
)
propose_curator
Assign a curator to a funded bounty.
May only be called from T::ApproveOrigin.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
| curator | AccountIdLookupOf<T> |
| fee | BalanceOf<T, I> |
Python
call = substrate.compose_call(
'Bounties', 'propose_curator', {
'bounty_id': 'u32',
'curator': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'fee': 'u128',
}
)
unassign_curator
Unassign curator from a bounty.
This function can only be called by the RejectOrigin a signed origin.
If this function is called by the RejectOrigin, we assume that the curator is
malicious or inactive. As a result, we will slash the curator when possible.
If the origin is the curator, we take this as a sign they are unable to do their job and they willingly give up. We could slash them, but for now we allow them to recover their deposit and exit without issue. (We may want to change this if it is abused.)
Finally, the origin can be anyone if and only if the curator is "inactive". This allows anyone in the community to call out that a curator is not doing their due diligence, and we should pick a new curator. In this case the curator should also be slashed.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python
call = substrate.compose_call(
'Bounties', 'unassign_curator', {'bounty_id': 'u32'}
)
Events
BountyAwarded
A bounty is awarded to a beneficiary.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| beneficiary | T::AccountId |
AccountId |
BountyBecameActive
A bounty proposal is funded and became active.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyCanceled
A bounty is cancelled.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyClaimed
A bounty is claimed by beneficiary.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| payout | BalanceOf<T, I> |
u128 |
| beneficiary | T::AccountId |
AccountId |
BountyExtended
A bounty expiry is extended.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyProposed
New bounty proposal.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyRejected
A bounty proposal was rejected; funds were slashed.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| bond | BalanceOf<T, I> |
u128 |
Storage functions
Bounties
Bounties that have been made.
Python
result = substrate.query(
'Bounties', 'Bounties', ['u32']
)
Return value
{
'bond': 'u128',
'curator_deposit': 'u128',
'fee': 'u128',
'proposer': 'AccountId',
'status': {
'Active': {'curator': 'AccountId', 'update_due': 'u32'},
'Approved': None,
'CuratorProposed': {'curator': 'AccountId'},
'Funded': None,
'PendingPayout': {
'beneficiary': 'AccountId',
'curator': 'AccountId',
'unlock_at': 'u32',
},
'Proposed': None,
},
'value': 'u128',
}
BountyApprovals
Bounty indices that have been approved but not yet funded.
Python
result = substrate.query(
'Bounties', 'BountyApprovals', []
)
Return value
['u32']
BountyCount
Number of bounty proposals that have been made.
Python
result = substrate.query(
'Bounties', 'BountyCount', []
)
Return value
'u32'
BountyDescriptions
The description of each bounty.
Python
result = substrate.query(
'Bounties', 'BountyDescriptions', ['u32']
)
Return value
'Bytes'
Constants
BountyDepositBase
The amount held on deposit for placing a bounty proposal.
Value
1000000000000000000
Python
constant = substrate.get_constant('Bounties', 'BountyDepositBase')
BountyDepositPayoutDelay
The delay period for which a bounty beneficiary need to wait before claim the payout.
Value
57600
Python
constant = substrate.get_constant('Bounties', 'BountyDepositPayoutDelay')
BountyUpdatePeriod
Bounty duration in blocks.
Value
648000
Python
constant = substrate.get_constant('Bounties', 'BountyUpdatePeriod')
BountyValueMinimum
Minimum value for a bounty.
Value
10000000000000000000
Python
constant = substrate.get_constant('Bounties', 'BountyValueMinimum')
CuratorDepositMax
Maximum amount of funds that should be placed in a deposit for making a proposal.
Value
2000000000000000000000
Python
constant = substrate.get_constant('Bounties', 'CuratorDepositMax')
CuratorDepositMin
Minimum amount of funds that should be placed in a deposit for making a proposal.
Value
100000000000000000000
Python
constant = substrate.get_constant('Bounties', 'CuratorDepositMin')
CuratorDepositMultiplier
The curator deposit is calculated as a percentage of the curator fee.
This deposit has optional upper and lower bounds with CuratorDepositMax and
CuratorDepositMin.
Value
500000
Python
constant = substrate.get_constant('Bounties', 'CuratorDepositMultiplier')
DataDepositPerByte
The amount held on deposit per byte within the tip report reason or bounty description.
Value
1000000000000000
Python
constant = substrate.get_constant('Bounties', 'DataDepositPerByte')
MaximumReasonLength
Maximum acceptable reason length.
Benchmarks depend on this value, be sure to update weights file when changing this value
Value
16384
Python
constant = substrate.get_constant('Bounties', 'MaximumReasonLength')
Errors
HasActiveChildBounty
The bounty cannot be closed because it has active child bounties.
InsufficientProposersBalance
Proposer's balance is too low.
InvalidFee
Invalid bounty fee.
InvalidIndex
No proposal or bounty at that index.
InvalidValue
Invalid bounty value.
PendingPayout
A bounty payout is pending. To cancel the bounty, you must unassign and slash the curator.
Premature
The bounties cannot be claimed/closed because it's still in the countdown period.
ReasonTooBig
The reason given is just too big.
RequireCurator
Require bounty curator.
TooManyQueued
Too many approvals are already queued.
UnexpectedStatus
The bounty status is unexpected.
Claims
Calls
claim
Make a claim to collect your EFI.
The dispatch origin for this call must be None.
Unsigned Validation: A call to claim is deemed valid if the signature provided matches the expected signed message of:
> Ethereum Signed Message: > (configured prefix string)(address)
and address matches the dest account.
Parameters:
- dest: The destination account to payout the claim.
- ethereum_signature: The signature of an ethereum signed message matching the format
described above.
<weight>
The weight of this call is invariant over the input parameters.
Weight includes logic to validate unsigned claim call.
Total Complexity: O(1) </weight>
Attributes
| Name | Type |
|---|---|
| dest | T::AccountId |
| ethereum_signature | Signature |
Python
call = substrate.compose_call(
'Claims', 'claim', {
'dest': 'AccountId',
'ethereum_signature': '[u8; 65]',
}
)
mint_claim
Mint a new claim to collect EFIs.
The dispatch origin for this call must be Root.
Parameters:
- who: The Ethereum address allowed to collect this claim.
- value: The number of EFIs that will be claimed.
<weight> The weight of this call is invariant over the input parameters.
Total Complexity: O(1) </weight>
Attributes
| Name | Type |
|---|---|
| who | EthereumAddress |
| value | BalanceOf<T> |
Python
call = substrate.compose_call(
'Claims', 'mint_claim', {'value': 'u128', 'who': '[u8; 20]'}
)
move_claim
Attributes
| Name | Type |
|---|---|
| old | EthereumAddress |
| new | EthereumAddress |
| preclaim | Option<T::AccountId> |
Python
call = substrate.compose_call(
'Claims', 'move_claim', {
'new': '[u8; 20]',
'old': '[u8; 20]',
'preclaim': (None, 'AccountId'),
}
)
Events
Claimed
Someone claimed some EFIs. [who, ethereum_address, amount]
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| ethereum_address | EthereumAddress |
[u8; 20] |
| amount | BalanceOf<T> |
u128 |
Storage functions
Claims
Python
result = substrate.query(
'Claims', 'Claims', ['[u8; 20]']
)
Return value
'u128'
Total
Python
result = substrate.query(
'Claims', 'Total', []
)
Return value
'u128'
Constants
Prefix
Prefix added to messages
Value
'Pay EFI to the Efinity account:'
Python
constant = substrate.get_constant('Claims', 'Prefix')
Errors
InvalidEthereumSignature
Invalid Ethereum signature.
SignerHasNoClaim
Ethereum address has no claim.
CollatorStaking
Calls
force_set_current_max_candidates
Set the current max candidates, must be within 0 and T::MaxCandidates
ForceOrigin call only
Attributes
| Name | Type |
|---|---|
| max_candidates | u32 |
Python
call = substrate.compose_call(
'CollatorStaking', 'force_set_current_max_candidates', {'max_candidates': 'u32'}
)
force_set_min_collator_stake
Set the MinCollatorStake amount ForceOrigin call only
Attributes
| Name | Type |
|---|---|
| min_collator_stake | Amount<T> |
Python
call = substrate.compose_call(
'CollatorStaking', 'force_set_min_collator_stake', {'min_collator_stake': 'u128'}
)
join_candidates
Join the list of candidates for collation.
Attributes
| Name | Type |
|---|---|
| amount | Amount<T> |
| rewards_cut | Perbill |
Python
call = substrate.compose_call(
'CollatorStaking', 'join_candidates', {
'amount': 'u128',
'rewards_cut': 'u32',
}
)
nominate
Nominate a specific candidate to be selected for collation and block production.
Attributes
| Name | Type |
|---|---|
| collator_id | T::AccountId |
| amount | Amount<T> |
Python
call = substrate.compose_call(
'CollatorStaking', 'nominate', {
'amount': 'u128',
'collator_id': 'AccountId',
}
)
remove_nomination
Remove a nomination previously registered for a specific collator candidate.
Attributes
| Name | Type |
|---|---|
| collator_id | T::AccountId |
Python
call = substrate.compose_call(
'CollatorStaking', 'remove_nomination', {'collator_id': 'AccountId'}
)
set_invulnerables
Join the list of candidates for collation.
Attributes
| Name | Type |
|---|---|
| accounts | Vec<T::AccountId> |
Python
call = substrate.compose_call(
'CollatorStaking', 'set_invulnerables', {'accounts': ['AccountId']}
)
unbond
Leave the collator set of this parachain.
In this case, if the calling account is already a collator, an exit is registered so that this account is not selected for the next set of collators. Otherwise, if the account is only a candidate, this candidate will be removed and the nominations would be freed up.
Attributes
No attributes
Python
call = substrate.compose_call(
'CollatorStaking', 'unbond', {}
)
Events
CandidateJoined
A new candidate joined the list of candidates.
Attributes
| Name | Type | Composition |
|---|---|---|
| account_id | T::AccountId |
AccountId |
| amount | Amount<T> |
u128 |
| rewards_cut | Perbill |
u32 |
CandidateRemoved
Candidate was removed.
Attributes
| Name | Type | Composition |
|---|---|---|
| account_id | T::AccountId |
AccountId |
CollatorSelected
A candidate has been selected to become a collator for the current round.
Attributes
| Name | Type | Composition |
|---|---|---|
| account_id | T::AccountId |
AccountId |
NewInvulnerables
A new list of invulnerables has been set by root.
Attributes
| Name | Type | Composition |
|---|---|---|
| new | Vec<T::AccountId> |
['AccountId'] |
Nominated
A new nomination was registered for a specific candidate.
Attributes
| Name | Type | Composition |
|---|---|---|
| account_id | T::AccountId |
AccountId |
| collator_id | T::AccountId |
AccountId |
| amount | Amount<T> |
u128 |
NominationRemoved
Nomination was removed.
Attributes
| Name | Type | Composition |
|---|---|---|
| account_id | T::AccountId |
AccountId |
| collator_id | T::AccountId |
AccountId |
| amount | Amount<T> |
u128 |
RoundFinalized
A new round was finalized
Attributes
| Name | Type | Composition |
|---|---|---|
| number | T::BlockNumber |
u32 |
Storage functions
Candidates
The current set of candidates for collation.
Python
result = substrate.query(
'CollatorStaking', 'Candidates', []
)
Return value
[
{
'account': 'AccountId',
'amount': 'u128',
'nominators': ['AccountId'],
'rewards_cut': 'u32',
'total_stake': 'u128',
},
]
CollatorExits
The list of collators who requested an exit.
Python
result = substrate.query(
'CollatorStaking', 'CollatorExits', ['AccountId']
)
Return value
'u32'
Collators
The current set of collators
Python
result = substrate.query(
'CollatorStaking', 'Collators', []
)
Return value
[
{
'account': 'AccountId',
'amount': 'u128',
'nominators': ['AccountId'],
'rewards_cut': 'u32',
'total_stake': 'u128',
},
]
CurrentRound
The current round information.
Python
result = substrate.query(
'CollatorStaking', 'CurrentRound', []
)
Return value
{
'collators': [
{
'account': 'AccountId',
'amount': 'u128',
'nominators': ['AccountId'],
'rewards_cut': 'u32',
'total_stake': 'u128',
},
],
'number': 'u32',
'starting_block': 'u32',
}
DesiredCandidatesCount
The current candidate limit, must be within 0 and T::MaxCandidates
Python
result = substrate.query(
'CollatorStaking', 'DesiredCandidatesCount', []
)
Return value
'u32'
Invulnerables
The invulnerable collators
This is the list of collators who are invulnerable to being ejected from collation either by unbonding or by having less stake.
Python
result = substrate.query(
'CollatorStaking', 'Invulnerables', []
)
Return value
[
{
'account': 'AccountId',
'amount': 'u128',
'nominators': ['AccountId'],
'rewards_cut': 'u32',
'total_stake': 'u128',
},
]
MinCollatorStake
The min stake amount for collators
Python
result = substrate.query(
'CollatorStaking', 'MinCollatorStake', []
)
Return value
'u128'
Nominators
The current set of nominators.
Each nominator is allowed to nominate one collator.
Python
result = substrate.query(
'CollatorStaking', 'Nominators', ['AccountId']
)
Return value
{'account': 'AccountId', 'amount': 'u128'}
SessionInfo
The session info of collators including produced blocks and uptime
Python
result = substrate.query(
'CollatorStaking', 'SessionInfo', ['AccountId', 'u32']
)
Return value
{'authored_block_count': 'u32', 'uptime': 'u32'}
Constants
CollatorExitThreshold
The number of rounds that have to pass after the collator has requested unbonding for the bonded stake to be released.
Value
2
Python
constant = substrate.get_constant('CollatorStaking', 'CollatorExitThreshold')
CollatorPoolAccountId
The AccountId for the collator pool
Value
'efRd63tR845wJ4KW17VFyzzS38m2zRjMbabQa5VyTNTikSqdy'
Python
constant = substrate.get_constant('CollatorStaking', 'CollatorPoolAccountId')
DefaultMinCollatorStake
The default minimum collator stake amount
Value
250000000000000000000000
Python
constant = substrate.get_constant('CollatorStaking', 'DefaultMinCollatorStake')
FeeDistributorAccountId
The AccountId for the fee distributor
Value
'efRd63tR845wJTXfddgZNfNZ55o23Erydfz8esAmo1HfgMZMS'
Python
constant = substrate.get_constant('CollatorStaking', 'FeeDistributorAccountId')
MaxCandidates
The number of selected collators
Value
100
Python
constant = substrate.get_constant('CollatorStaking', 'MaxCandidates')
MaxCollators
The number of selected collators
Value
25
Python
constant = substrate.get_constant('CollatorStaking', 'MaxCollators')
MaxInvulnerables
Maximum number of invulnerables.
Value
10
Python
constant = substrate.get_constant('CollatorStaking', 'MaxInvulnerables')
MaxNominationsPerCollator
Maximum nominators per collator
Value
100
Python
constant = substrate.get_constant('CollatorStaking', 'MaxNominationsPerCollator')
MinNominationStakeAmount
Minimum nomination stake required
Value
5000000000000000000
Python
constant = substrate.get_constant('CollatorStaking', 'MinNominationStakeAmount')
SessionPeriod
The total number of blocks within a session
Value
600
Python
constant = substrate.get_constant('CollatorStaking', 'SessionPeriod')
Errors
AccountIdNotRegistered
Collators Account is not yet registered
BelowMinNominationStakeAmount
Nomination stake is below the minimum required amount.
BelowMinStakeAmount
Candidate stake is below the minimum required amount.
CandidateDoesNotExist
Candidate was not found.
CandidateExists
Candidate was already registered.
CannotUnbondInvulnerable
Cannot unbond Invulnerable
ExitInProgress
A candidate has already registered an exit.
NoAssociatedValidatorId
Account has no associated validator ID
NominationDoesNotExist
Nomination was not found.
NominationExists
Nomination was already registered.
NotCollator
Not a block producer
TooManyCandidates
Parachain reached the limit for candidates.
TooManyInvulnerables
An attempt to set too many invulnerables
TooManyNominations
Collator has reached max number of nominations
CommunityPool
Calls
approve_proposal
Approve a proposal. At a later time, the proposal will be allocated to the beneficiary and the original deposit will be returned.
May only be called from T::ApproveOrigin.
# <weight>
- Complexity: O(1).
- DbReads: Proposals, Approvals
- DbWrite: Approvals
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python
call = substrate.compose_call(
'CommunityPool', 'approve_proposal', {'proposal_id': 'u32'}
)
propose_spend
Put forward a suggestion for spending. A deposit proportional to the value is reserved and slashed if the proposal is rejected. It is returned once the proposal is awarded.
# <weight>
- Complexity: O(1)
- DbReads: ProposalCount, origin account
- DbWrites: ProposalCount, Proposals, origin account
# </weight>
Attributes
| Name | Type |
|---|---|
| value | BalanceOf<T, I> |
| beneficiary | AccountIdLookupOf<T> |
Python
call = substrate.compose_call(
'CommunityPool', 'propose_spend', {
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'value': 'u128',
}
)
reject_proposal
Reject a proposed spend. The original deposit will be slashed.
May only be called from T::RejectOrigin.
# <weight>
- Complexity: O(1)
- DbReads: Proposals, rejected proposer account
- DbWrites: Proposals, rejected proposer account
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python
call = substrate.compose_call(
'CommunityPool', 'reject_proposal', {'proposal_id': 'u32'}
)
remove_approval
Force a previously approved proposal to be removed from the approval queue. The original deposit will no longer be returned.
May only be called from T::RejectOrigin.
- proposal_id: The index of a proposal
# <weight>
- Complexity: O(A) where A is the number of approvals
- Db reads and writes: Approvals
# </weight>
Errors:
- ProposalNotApproved: The proposal_id supplied was not found in the approval queue,
i.e., the proposal has not been approved. This could also mean the proposal does not
exist altogether, thus there is no way it would have been approved in the first place.
Attributes
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python
call = substrate.compose_call(
'CommunityPool', 'remove_approval', {'proposal_id': 'u32'}
)
spend
Propose and approve a spend of treasury funds.
origin: Must beSpendOriginwith theSuccessvalue being at leastamount.amount: The amount to be transferred from the treasury to thebeneficiary.beneficiary: The destination account for the transfer.
NOTE: For record-keeping purposes, the proposer is deemed to be equivalent to the beneficiary.
Attributes
| Name | Type |
|---|---|
| amount | BalanceOf<T, I> |
| beneficiary | AccountIdLookupOf<T> |
Python
call = substrate.compose_call(
'CommunityPool', 'spend', {
'amount': 'u128',
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events
Awarded
Some funds have been allocated.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| award | BalanceOf<T, I> |
u128 |
| account | T::AccountId |
AccountId |
Burnt
Some of our funds have been burnt.
Attributes
| Name | Type | Composition |
|---|---|---|
| burnt_funds | BalanceOf<T, I> |
u128 |
Deposit
Some funds have been deposited.
Attributes
| Name | Type | Composition |
|---|---|---|
| value | BalanceOf<T, I> |
u128 |
Proposed
New proposal.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
Rejected
A proposal was rejected; funds were slashed.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| slashed | BalanceOf<T, I> |
u128 |
Rollover
Spending has finished; this is the amount that rolls over until next spend.
Attributes
| Name | Type | Composition |
|---|---|---|
| rollover_balance | BalanceOf<T, I> |
u128 |
SpendApproved
A new spend proposal has been approved.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| amount | BalanceOf<T, I> |
u128 |
| beneficiary | T::AccountId |
AccountId |
Spending
We have ended a spend period and will now allocate funds.
Attributes
| Name | Type | Composition |
|---|---|---|
| budget_remaining | BalanceOf<T, I> |
u128 |
Storage functions
Approvals
Proposal indices that have been approved but not yet awarded.
Python
result = substrate.query(
'CommunityPool', 'Approvals', []
)
Return value
['u32']
ProposalCount
Number of proposals that have been made.
Python
result = substrate.query(
'CommunityPool', 'ProposalCount', []
)
Return value
'u32'
Proposals
Proposals that have been made.
Python
result = substrate.query(
'CommunityPool', 'Proposals', ['u32']
)
Return value
{
'beneficiary': 'AccountId',
'bond': 'u128',
'proposer': 'AccountId',
'value': 'u128',
}
Constants
Burn
Percentage of spare funds (if any) that are burnt per spend period.
Value
10000
Python
constant = substrate.get_constant('CommunityPool', 'Burn')
MaxApprovals
The maximum number of approvals that can wait in the spending queue.
NOTE: This parameter is also used within the Bounties Pallet extension if enabled.
Value
100
Python
constant = substrate.get_constant('CommunityPool', 'MaxApprovals')
PalletId
The treasury's pallet id, used for deriving its sovereign account ID.
Value
'0x65662f636d6e7479'
Python
constant = substrate.get_constant('CommunityPool', 'PalletId')
ProposalBond
Fraction of a proposal's value that should be bonded in order to place the proposal. An accepted proposal gets these back. A rejected proposal does not.
Value
50000
Python
constant = substrate.get_constant('CommunityPool', 'ProposalBond')
ProposalBondMaximum
Maximum amount of funds that should be placed in a deposit for making a proposal.
Value
None
Python
constant = substrate.get_constant('CommunityPool', 'ProposalBondMaximum')
ProposalBondMinimum
Minimum amount of funds that should be placed in a deposit for making a proposal.
Value
100000000000000000000
Python
constant = substrate.get_constant('CommunityPool', 'ProposalBondMinimum')
SpendPeriod
Period between successive spends.
Value
172800
Python
constant = substrate.get_constant('CommunityPool', 'SpendPeriod')
Errors
InsufficientPermission
The spend origin is valid but the amount it is allowed to spend is lower than the amount to be spent.
InsufficientProposersBalance
Proposer's balance is too low.
InvalidIndex
No proposal or bounty at that index.
ProposalNotApproved
Proposal has not been approved.
TooManyApprovals
Too many approvals in the queue.
Council
Calls
close
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | Weight |
| length_bound | u32 |
Python
call = substrate.compose_call(
'Council', 'close', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
close_old_weight
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | OldWeight |
| length_bound | u32 |
Python
call = substrate.compose_call(
'Council', 'close_old_weight', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': 'u64',
}
)
disapprove_proposal
Disapprove a proposal, close, and remove it from the system, regardless of its current state.
Must be called by the Root origin.
Parameters:
* proposal_hash: The hash of the proposal that should be disapproved.
# <weight> Complexity: O(P) where P is the number of max proposals DB Weight: * Reads: Proposals * Writes: Voting, Proposals, ProposalOf # </weight>
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python
call = substrate.compose_call(
'Council', 'disapprove_proposal', {'proposal_hash': '[u8; 32]'}
)
execute
Dispatch a proposal from a member using the Member origin.
Origin must be a member of the collective.
# <weight>
## Weight
- O(M + P) where M members-count (code-bounded) and P complexity of dispatching
proposal
- DB: 1 read (codec O(M)) + DB access of proposal
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python
call = substrate.compose_call(
'Council', 'execute', {
'length_bound': 'u32',
'proposal': 'Call',
}
)
propose
Add a new proposal to either be voted on or executed directly.
Requires the sender to be member.
threshold determines whether proposal is executed directly (threshold < 2)
or put up for voting.
# <weight>
## Weight
- O(B + M + P1) or O(B + M + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- branching is influenced by threshold where:
- P1 is proposal execution complexity (threshold < 2)
- P2 is proposals-count (code-bounded) (threshold >= 2)
- DB:
- 1 storage read is_member (codec O(M))
- 1 storage read ProposalOf::contains_key (codec O(1))
- DB accesses influenced by threshold:
- EITHER storage accesses done by proposal (threshold < 2)
- OR proposal insertion (threshold <= 2)
- 1 storage mutation Proposals (codec O(P2))
- 1 storage mutation ProposalCount (codec O(1))
- 1 storage write ProposalOf (codec O(B))
- 1 storage write Voting (codec O(M))
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| threshold | MemberCount |
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python
call = substrate.compose_call(
'Council', 'propose', {
'length_bound': 'u32',
'proposal': 'Call',
'threshold': 'u32',
}
)
set_members
Set the collective's membership.
new_members: The new member list. Be nice to the chain and provide it sorted.prime: The prime member whose vote sets the default.old_count: The upper bound for the previous number of members in storage. Used for weight estimation.
Requires root origin.
NOTE: Does not enforce the expected MaxMembers limit on the amount of members, but
the weight estimations rely on it to estimate dispatchable weight.
# WARNING:
The pallet-collective can also be managed by logic outside of the pallet through the
implementation of the trait [ChangeMembers].
Any call to set_members must be careful that the member set doesn't get out of sync
with other logic managing the member set.
# <weight>
## Weight
- O(MP + N) where:
- M old-members-count (code- and governance-bounded)
- N new-members-count (code- and governance-bounded)
- P proposals-count (code-bounded)
- DB:
- 1 storage mutation (codec O(M) read, O(N) write) for reading and writing the
members
- 1 storage read (codec O(P)) for reading the proposals
- P storage mutations (codec O(M)) for updating the votes for each proposal
- 1 storage write (codec O(1)) for deleting the old prime and setting the new one
# </weight>
Attributes
| Name | Type |
|---|---|
| new_members | Vec<T::AccountId> |
| prime | Option<T::AccountId> |
| old_count | MemberCount |
Python
call = substrate.compose_call(
'Council', 'set_members', {
'new_members': ['AccountId'],
'old_count': 'u32',
'prime': (None, 'AccountId'),
}
)
vote
Add an aye or nay vote for the sender to the given proposal.
Requires the sender to be a member.
Transaction fees will be waived if the member is voting on any particular proposal
for the first time and the call is successful. Subsequent vote changes will charge a
fee.
# <weight>
## Weight
- O(M) where M is members-count (code- and governance-bounded)
- DB:
- 1 storage read Members (codec O(M))
- 1 storage mutation Voting (codec O(M))
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal | T::Hash |
| index | ProposalIndex |
| approve | bool |
Python
call = substrate.compose_call(
'Council', 'vote', {
'approve': 'bool',
'index': 'u32',
'proposal': '[u8; 32]',
}
)
Events
Approved
A motion was approved by the required threshold.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Closed
A proposal was closed because its threshold was reached or after its duration was up.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Disapproved
A motion was not approved by the required threshold.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Executed
A motion was executed; result will be Ok if it returned without error.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
MemberExecuted
A single member did some action; result will be Ok if it returned without error.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
Proposed
A motion (given hash) has been proposed (by given account) with a threshold (given
MemberCount).
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_index | ProposalIndex |
u32 |
| proposal_hash | T::Hash |
[u8; 32] |
| threshold | MemberCount |
u32 |
Voted
A motion (given hash) has been voted on by given account, leaving
a tally (yes votes and no votes given respectively as MemberCount).
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_hash | T::Hash |
[u8; 32] |
| voted | bool |
bool |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Storage functions
Members
The current members of the collective. This is stored sorted (just by value).
Python
result = substrate.query(
'Council', 'Members', []
)
Return value
['AccountId']
Prime
The prime member that helps determine the default vote behavior in case of absentations.
Python
result = substrate.query(
'Council', 'Prime', []
)
Return value
'AccountId'
ProposalCount
Proposals so far.
Python
result = substrate.query(
'Council', 'ProposalCount', []
)
Return value
'u32'
ProposalOf
Actual proposal for a given hash, if it's current.
Python
result = substrate.query(
'Council', 'ProposalOf', ['[u8; 32]']
)
Return value
'Call'
Proposals
The hashes of the active proposals.
Python
result = substrate.query(
'Council', 'Proposals', []
)
Return value
['[u8; 32]']
Voting
Votes on a given proposal, if it is ongoing.
Python
result = substrate.query(
'Council', 'Voting', ['[u8; 32]']
)
Return value
{'ayes': ['AccountId'], 'end': 'u32', 'index': 'u32', 'nays': ['AccountId'], 'threshold': 'u32'}
Errors
AlreadyInitialized
Members are already initialized!
DuplicateProposal
Duplicate proposals not allowed
DuplicateVote
Duplicate vote ignored
NotMember
Account is not a member
ProposalMissing
Proposal must exist
TooEarly
The close call was made too early, before the end of the voting.
TooManyProposals
There can only be a maximum of MaxProposals active proposals.
WrongIndex
Mismatched index
WrongProposalLength
The given length bound for the proposal was too low.
WrongProposalWeight
The given weight bound for the proposal was too low.
CumulusXcm
Events
ExecutedDownward
Downward message executed with the given outcome. [ id, outcome ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | [u8; 8] |
[u8; 8] |
| None | Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
InvalidFormat
Downward message is invalid XCM. [ id ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | [u8; 8] |
[u8; 8] |
UnsupportedVersion
Downward message is unsupported version of XCM. [ id ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | [u8; 8] |
[u8; 8] |
Democracy
Calls
blacklist
Permanently place a proposal into the blacklist. This prevents it from ever being proposed again.
If called on a queued public or external proposal, then this will result in it being
removed. If the ref_index supplied is an active referendum with the proposal hash,
then it will be cancelled.
The dispatch origin of this call must be BlacklistOrigin.
proposal_hash: The proposal hash to blacklist permanently.ref_index: An ongoing referendum whose hash isproposal_hash, which will be cancelled.
Weight: O(p) (though as this is an high-privilege dispatch, we assume it has a
reasonable value).
Attributes
| Name | Type |
|---|---|
| proposal_hash | H256 |
| maybe_ref_index | Option<ReferendumIndex> |
Python
call = substrate.compose_call(
'Democracy', 'blacklist', {
'maybe_ref_index': (None, 'u32'),
'proposal_hash': '[u8; 32]',
}
)
cancel_proposal
Remove a proposal.
The dispatch origin of this call must be CancelProposalOrigin.
prop_index: The index of the proposal to cancel.
Weight: O(p) where p = PublicProps::<T>::decode_len()
Attributes
| Name | Type |
|---|---|
| prop_index | PropIndex |
Python
call = substrate.compose_call(
'Democracy', 'cancel_proposal', {'prop_index': 'u32'}
)
cancel_referendum
Remove a referendum.
The dispatch origin of this call must be Root.
ref_index: The index of the referendum to cancel.
# Weight: O(1).
Attributes
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
Python
call = substrate.compose_call(
'Democracy', 'cancel_referendum', {'ref_index': 'u32'}
)
clear_public_proposals
Clears all public proposals.
The dispatch origin of this call must be Root.
Weight: O(1).
Attributes
No attributes
Python
call = substrate.compose_call(
'Democracy', 'clear_public_proposals', {}
)
delegate
Delegate the voting power (with some given conviction) of the sending account.
The balance delegated is locked for as long as it's delegated, and thereafter for the time appropriate for the conviction's lock period.
The dispatch origin of this call must be Signed, and the signing account must either:
- be delegating already; or
- have no voting activity (if there is, then it will need to be removed/consolidated
through reap_vote or unvote).
to: The account whose voting thetargetaccount's voting power will follow.conviction: The conviction that will be attached to the delegated votes. When the account is undelegated, the funds will be locked for the corresponding period.balance: The amount of the account's balance to be used in delegating. This must not be more than the account's current balance.
Emits Delegated.
Weight: O(R) where R is the number of referendums the voter delegating to has
voted on. Weight is charged as if maximum votes.
Attributes
| Name | Type |
|---|---|
| to | AccountIdLookupOf<T> |
| conviction | Conviction |
| balance | BalanceOf<T> |
Python
call = substrate.compose_call(
'Democracy', 'delegate', {
'balance': 'u128',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
'to': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
emergency_cancel
Schedule an emergency cancellation of a referendum. Cannot happen twice to the same referendum.
The dispatch origin of this call must be CancellationOrigin.
-ref_index: The index of the referendum to cancel.
Weight: O(1).
Attributes
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
Python
call = substrate.compose_call(
'Democracy', 'emergency_cancel', {'ref_index': 'u32'}
)
external_propose
Schedule a referendum to be tabled once it is legal to schedule an external referendum.
The dispatch origin of this call must be ExternalOrigin.
proposal_hash: The preimage hash of the proposal.
Attributes
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
Python
call = substrate.compose_call(
'Democracy', 'external_propose', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
}
)
external_propose_default
Schedule a negative-turnout-bias referendum to be tabled next once it is legal to schedule an external referendum.
The dispatch of this call must be ExternalDefaultOrigin.
proposal_hash: The preimage hash of the proposal.
Unlike external_propose, blacklisting has no effect on this and it may replace a
pre-scheduled external_propose call.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
Python
call = substrate.compose_call(
'Democracy', 'external_propose_default', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
}
)
external_propose_majority
Schedule a majority-carries referendum to be tabled next once it is legal to schedule an external referendum.
The dispatch of this call must be ExternalMajorityOrigin.
proposal_hash: The preimage hash of the proposal.
Unlike external_propose, blacklisting has no effect on this and it may replace a
pre-scheduled external_propose call.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
Python
call = substrate.compose_call(
'Democracy', 'external_propose_majority', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
}
)
fast_track
Schedule the currently externally-proposed majority-carries referendum to be tabled immediately. If there is no externally-proposed referendum currently, or if there is one but it is not a majority-carries referendum then it fails.
The dispatch of this call must be FastTrackOrigin.
proposal_hash: The hash of the current external proposal.voting_period: The period that is allowed for voting on this proposal. Increased to Must be always greater than zero. ForFastTrackOriginmust be equal or greater thanFastTrackVotingPeriod.delay: The number of block after voting has ended in approval and this should be enacted. This doesn't have a minimum amount.
Emits Started.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| proposal_hash | H256 |
| voting_period | T::BlockNumber |
| delay | T::BlockNumber |
Python
call = substrate.compose_call(
'Democracy', 'fast_track', {
'delay': 'u32',
'proposal_hash': '[u8; 32]',
'voting_period': 'u32',
}
)
propose
Propose a sensitive action to be taken.
The dispatch origin of this call must be Signed and the sender must have funds to cover the deposit.
proposal_hash: The hash of the proposal preimage.value: The amount of deposit (must be at leastMinimumDeposit).
Emits Proposed.
Attributes
| Name | Type |
|---|---|
| proposal | BoundedCallOf<T> |
| value | BalanceOf<T> |
Python
call = substrate.compose_call(
'Democracy', 'propose', {
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {
'hash': '[u8; 32]',
'len': 'u32',
},
},
'value': 'u128',
}
)
remove_other_vote
Remove a vote for a referendum.
If the target is equal to the signer, then this function is exactly equivalent to
remove_vote. If not equal to the signer, then the vote must have expired,
either because the referendum was cancelled, because the voter lost the referendum or
because the conviction period is over.
The dispatch origin of this call must be Signed.
target: The account of the vote to be removed; this account must have voted for referendumindex.index: The index of referendum of the vote to be removed.
Weight: O(R + log R) where R is the number of referenda that target has voted on.
Weight is calculated for the maximum number of vote.
Attributes
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
| index | ReferendumIndex |
Python
call = substrate.compose_call(
'Democracy', 'remove_other_vote', {
'index': 'u32',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_vote
Remove a vote for a referendum.
If:
- the referendum was cancelled, or
- the referendum is ongoing, or
- the referendum has ended such that
- the vote of the account was in opposition to the result; or
- there was no conviction to the account's vote; or
- the account made a split vote
...then the vote is removed cleanly and a following call to unlock may result in more
funds being available.
If, however, the referendum has ended and: - it finished corresponding to the vote of the account, and - the account made a standard vote with conviction, and - the lock period of the conviction is not over ...then the lock will be aggregated into the overall account's lock, which may involve overlocking (where the two locks are combined into a single lock that is the maximum of both the amount locked and the time is it locked for).
The dispatch origin of this call must be Signed, and the signer must have a vote
registered for referendum index.
index: The index of referendum of the vote to be removed.
Weight: O(R + log R) where R is the number of referenda that target has voted on.
Weight is calculated for the maximum number of vote.
Attributes
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python
call = substrate.compose_call(
'Democracy', 'remove_vote', {'index': 'u32'}
)
second
Signals agreement with a particular proposal.
The dispatch origin of this call must be Signed and the sender must have funds to cover the deposit, equal to the original deposit.
proposal: The index of the proposal to second.
Attributes
| Name | Type |
|---|---|
| proposal | PropIndex |
Python
call = substrate.compose_call(
'Democracy', 'second', {'proposal': 'u32'}
)
undelegate
Undelegate the voting power of the sending account.
Tokens may be unlocked following once an amount of time consistent with the lock period of the conviction with which the delegation was issued.
The dispatch origin of this call must be Signed and the signing account must be currently delegating.
Emits Undelegated.
Weight: O(R) where R is the number of referendums the voter delegating to has
voted on. Weight is charged as if maximum votes.
Attributes
No attributes
Python
call = substrate.compose_call(
'Democracy', 'undelegate', {}
)
unlock
Unlock tokens that have an expired lock.
The dispatch origin of this call must be Signed.
target: The account to remove the lock on.
Weight: O(R) with R number of vote of target.
Attributes
| Name | Type |
|---|---|
| target | AccountIdLookupOf<T> |
Python
call = substrate.compose_call(
'Democracy', 'unlock', {
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
veto_external
Veto and blacklist the external proposal hash.
The dispatch origin of this call must be VetoOrigin.
proposal_hash: The preimage hash of the proposal to veto and blacklist.
Emits Vetoed.
Weight: O(V + log(V)) where V is number of existing vetoers
Attributes
| Name | Type |
|---|---|
| proposal_hash | H256 |
Python
call = substrate.compose_call(
'Democracy', 'veto_external', {'proposal_hash': '[u8; 32]'}
)
vote
Vote in a referendum. If vote.is_aye(), the vote is to enact the proposal;
otherwise it is a vote to keep the status quo.
The dispatch origin of this call must be Signed.
ref_index: The index of the referendum to vote for.vote: The vote configuration.
Attributes
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
| vote | AccountVote<BalanceOf<T>> |
Python
call = substrate.compose_call(
'Democracy', 'vote', {
'ref_index': 'u32',
'vote': {
'Split': {
'aye': 'u128',
'nay': 'u128',
},
'Standard': {
'balance': 'u128',
'vote': {
'aye': 'bool',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
},
},
},
}
)
Events
Blacklisted
A proposal_hash has been blacklisted permanently.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | H256 |
[u8; 32] |
Cancelled
A referendum has been cancelled.
Attributes
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
Delegated
An account has delegated their vote to another account.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| target | T::AccountId |
AccountId |
ExternalTabled
An external proposal has been tabled.
Attributes
No attributes
NotPassed
A proposal has been rejected by referendum.
Attributes
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
Passed
A proposal has been approved by referendum.
Attributes
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
ProposalCanceled
A proposal got canceled.
Attributes
| Name | Type | Composition |
|---|---|---|
| prop_index | PropIndex |
u32 |
Proposed
A motion has been proposed by a public account.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | PropIndex |
u32 |
| deposit | BalanceOf<T> |
u128 |
Seconded
An account has secconded a proposal
Attributes
| Name | Type | Composition |
|---|---|---|
| seconder | T::AccountId |
AccountId |
| prop_index | PropIndex |
u32 |
Started
A referendum has begun.
Attributes
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
| threshold | VoteThreshold |
('SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority') |
Tabled
A public proposal has been tabled for referendum vote.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | PropIndex |
u32 |
| deposit | BalanceOf<T> |
u128 |
Undelegated
An account has cancelled a previous delegation operation.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
Vetoed
An external proposal has been vetoed.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| proposal_hash | H256 |
[u8; 32] |
| until | T::BlockNumber |
u32 |
Voted
An account has voted in a referendum
Attributes
| Name | Type | Composition |
|---|---|---|
| voter | T::AccountId |
AccountId |
| ref_index | ReferendumIndex |
u32 |
| vote | AccountVote<BalanceOf<T>> |
{'Standard': {'vote': {'aye': 'bool', 'conviction': ('None', 'Locked1x', 'Locked2x', 'Locked3x', 'Locked4x', 'Locked5x', 'Locked6x')}, 'balance': 'u128'}, 'Split': {'aye': 'u128', 'nay': 'u128'}} |
Storage functions
Blacklist
A record of who vetoed what. Maps proposal hash to a possible existent block number (until when it may not be resubmitted) and who vetoed it.
Python
result = substrate.query(
'Democracy', 'Blacklist', ['[u8; 32]']
)
Return value
('u32', ['AccountId'])
Cancellations
Record of all proposals that have been subject to emergency cancellation.
Python
result = substrate.query(
'Democracy', 'Cancellations', ['[u8; 32]']
)
Return value
'bool'
DepositOf
Those who have locked a deposit.
TWOX-NOTE: Safe, as increasing integer keys are safe.
Python
result = substrate.query(
'Democracy', 'DepositOf', ['u32']
)
Return value
(['AccountId'], 'u128')
LastTabledWasExternal
True if the last referendum tabled was submitted externally. False if it was a public proposal.
Python
result = substrate.query(
'Democracy', 'LastTabledWasExternal', []
)
Return value
'bool'
LowestUnbaked
The lowest referendum index representing an unbaked referendum. Equal to
ReferendumCount if there isn't a unbaked referendum.
Python
result = substrate.query(
'Democracy', 'LowestUnbaked', []
)
Return value
'u32'
NextExternal
The referendum to be tabled whenever it would be valid to table an external proposal.
This happens when a referendum needs to be tabled and one of two conditions are met:
- LastTabledWasExternal is false; or
- PublicProps is empty.
Python
result = substrate.query(
'Democracy', 'NextExternal', []
)
Return value
(
{
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
('SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority'),
)
PublicPropCount
The number of (public) proposals that have been made so far.
Python
result = substrate.query(
'Democracy', 'PublicPropCount', []
)
Return value
'u32'
PublicProps
The public proposals. Unsorted. The second item is the proposal.
Python
result = substrate.query(
'Democracy', 'PublicProps', []
)
Return value
[
(
'u32',
{
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'AccountId',
),
]
ReferendumCount
The next free referendum index, aka the number of referenda started so far.
Python
result = substrate.query(
'Democracy', 'ReferendumCount', []
)
Return value
'u32'
ReferendumInfoOf
Information concerning any given referendum.
TWOX-NOTE: SAFE as indexes are not under an attacker’s control.
Python
result = substrate.query(
'Democracy', 'ReferendumInfoOf', ['u32']
)
Return value
{
'Finished': {'approved': 'bool', 'end': 'u32'},
'Ongoing': {
'delay': 'u32',
'end': 'u32',
'proposal': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'tally': {'ayes': 'u128', 'nays': 'u128', 'turnout': 'u128'},
'threshold': (
'SuperMajorityApprove',
'SuperMajorityAgainst',
'SimpleMajority',
),
},
}
VotingOf
All votes for a particular voter. We store the balance for the number of votes that we have recorded. The second item is the total amount of delegations, that will be added.
TWOX-NOTE: SAFE as AccountIds are crypto hashes anyway.
Python
result = substrate.query(
'Democracy', 'VotingOf', ['AccountId']
)
Return value
{
'Delegating': {
'balance': 'u128',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
'delegations': {'capital': 'u128', 'votes': 'u128'},
'prior': ('u32', 'u128'),
'target': 'AccountId',
},
'Direct': {
'delegations': {'capital': 'u128', 'votes': 'u128'},
'prior': ('u32', 'u128'),
'votes': [('u32', {'Split': 'InnerStruct', 'Standard': 'InnerStruct'})],
},
}
Constants
CooloffPeriod
Period in blocks where an external proposal may not be re-submitted after being vetoed.
Value
100800
Python
constant = substrate.get_constant('Democracy', 'CooloffPeriod')
EnactmentPeriod
The period between a proposal being approved and enacted.
It should generally be a little more than the unstake period to ensure that voting stakers have an opportunity to remove themselves from the system in the case where they are on the losing side of a vote.
Value
108000
Python
constant = substrate.get_constant('Democracy', 'EnactmentPeriod')
FastTrackVotingPeriod
Minimum voting period allowed for a fast-track referendum.
Value
21600
Python
constant = substrate.get_constant('Democracy', 'FastTrackVotingPeriod')
InstantAllowed
Indicator for whether an emergency origin is even allowed to happen. Some chains may
want to set this permanently to false, others may want to condition it on things such
as an upgrade having happened recently.
Value
True
Python
constant = substrate.get_constant('Democracy', 'InstantAllowed')
LaunchPeriod
How often (in blocks) new public referenda are launched.
Value
100800
Python
constant = substrate.get_constant('Democracy', 'LaunchPeriod')
MaxBlacklisted
The maximum number of items which can be blacklisted.
Value
100
Python
constant = substrate.get_constant('Democracy', 'MaxBlacklisted')
MaxDeposits
The maximum number of deposits a public proposal may have at any time.
Value
100
Python
constant = substrate.get_constant('Democracy', 'MaxDeposits')
MaxProposals
The maximum number of public proposals that can exist at any time.
Value
100
Python
constant = substrate.get_constant('Democracy', 'MaxProposals')
MaxVotes
The maximum number of votes for an account.
Also used to compute weight, an overly big value can
lead to extrinsic with very big weight: see delegate for instance.
Value
100
Python
constant = substrate.get_constant('Democracy', 'MaxVotes')
MinimumDeposit
The minimum amount to be used as a deposit for a public referendum proposal.
Value
1001000000000000000000000
Python
constant = substrate.get_constant('Democracy', 'MinimumDeposit')
VoteLockingPeriod
The minimum period of vote locking.
It should be no shorter than enactment period to ensure that in the case of an approval, those successful voters are locked into the consequences that their votes entail.
Value
108000
Python
constant = substrate.get_constant('Democracy', 'VoteLockingPeriod')
VotingPeriod
How often (in blocks) to check for new votes.
Value
100800
Python
constant = substrate.get_constant('Democracy', 'VotingPeriod')
Errors
AlreadyCanceled
Cannot cancel the same proposal twice
AlreadyDelegating
The account is already delegating.
AlreadyVetoed
Identity may not veto a proposal twice
DuplicateProposal
Proposal already made
InstantNotAllowed
The instant referendum origin is currently disallowed.
InsufficientFunds
Too high a balance was provided that the account cannot afford.
InvalidHash
Invalid hash
MaxVotesReached
Maximum number of votes reached.
NoPermission
The actor has no permission to conduct the action.
NoProposal
No external proposal
NoneWaiting
No proposals waiting
Nonsense
Delegation to oneself makes no sense.
NotDelegating
The account is not currently delegating.
NotSimpleMajority
Next external proposal not simple majority
NotVoter
The given account did not vote on the referendum.
ProposalBlacklisted
Proposal still blacklisted
ProposalMissing
Proposal does not exist
ReferendumInvalid
Vote given for invalid referendum
TooMany
Maximum number of items reached.
ValueLow
Value too low
VotesExist
The account currently has votes attached to it and the operation cannot succeed until
these are removed, either through unvote or reap_vote.
VotingPeriodLow
Voting period too low
WrongUpperBound
Invalid upper bound.
DmpQueue
Calls
service_overweight
Service a single overweight message.
origin: Must passExecuteOverweightOrigin.index: The index of the overweight message to service.weight_limit: The amount of weight that message execution may take.
Errors:
- Unknown: Message of index is unknown.
- OverLimit: Message execution may use greater than weight_limit.
Events:
- OverweightServiced: On success.
Attributes
| Name | Type |
|---|---|
| index | OverweightIndex |
| weight_limit | XcmWeight |
Python
call = substrate.compose_call(
'DmpQueue', 'service_overweight', {
'index': 'u64',
'weight_limit': 'u64',
}
)
Events
ExecutedDownward
Downward message executed with the given outcome.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
| outcome | Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
InvalidFormat
Downward message is invalid XCM.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
OverweightEnqueued
Downward message is overweight and was placed in the overweight queue.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
| overweight_index | OverweightIndex |
u64 |
| required_weight | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
OverweightServiced
Downward message from the overweight queue was executed.
Attributes
| Name | Type | Composition |
|---|---|---|
| overweight_index | OverweightIndex |
u64 |
| weight_used | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
UnsupportedVersion
Downward message is unsupported version of XCM.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
WeightExhausted
The weight limit for handling downward messages was reached.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
| remaining_weight | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
| required_weight | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
Storage functions
Configuration
The configuration.
Python
result = substrate.query(
'DmpQueue', 'Configuration', []
)
Return value
{'max_individual': {'proof_size': 'u64', 'ref_time': 'u64'}}
Overweight
The overweight messages.
Python
result = substrate.query(
'DmpQueue', 'Overweight', ['u64']
)
Return value
('u32', 'Bytes')
PageIndex
The page index.
Python
result = substrate.query(
'DmpQueue', 'PageIndex', []
)
Return value
{'begin_used': 'u32', 'end_used': 'u32', 'overweight_count': 'u64'}
Pages
The queue pages.
Python
result = substrate.query(
'DmpQueue', 'Pages', ['u32']
)
Return value
[('u32', 'Bytes')]
Errors
OverLimit
The amount of weight given is possibly not enough for executing the message.
Unknown
The message index given is unknown.
EfinityUtility
Calls
batch
Dispatch a batch of calls.
May be called from any origin except None.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then the calls are dispatched without checking origin filter. (This
includes bypassing frame_system::Config::BaseCallFilter).
Attributes
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::RuntimeCall> |
| continue_on_failure | bool |
Python
call = substrate.compose_call(
'EfinityUtility', 'batch', {
'calls': ['Call'],
'continue_on_failure': 'bool',
}
)
Events
BatchDispatched
Batch of calls dispatched without errors.
Attributes
No attributes
BatchFailed
Batch of calls did not disptach completely. Index and error of the failing dispatch call is provided.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | u32 |
u32 |
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
BatchPartiallyDispatched
Batch of calls dispatched, but some calls resulted in error. Indexes and errors of failing dispatch calls are provided.
Attributes
| Name | Type | Composition |
|---|---|---|
| None | BatchErrors |
[('u32', {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None})] |
Constants
batched_calls_limit
The limit on the number of batched calls.
Value
10922
Python
constant = substrate.get_constant('EfinityUtility', 'batched_calls_limit')
Errors
TooManyCalls
Too many calls batched.
EfinityXcm
Calls
force_set_minimum_weight
Update xcm fees amount to be used in xcm.Withdraw message
Attributes
| Name | Type |
|---|---|
| xcm_call | XcmOperation |
| xcm_weight_fee_misc | MinimumWeightFeePair<Weight, T::Balance> |
Python
call = substrate.compose_call(
'EfinityXcm', 'force_set_minimum_weight', {
'xcm_call': {
'ParachainFee': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
'XTokensTransfer': None,
},
'xcm_weight_fee_misc': {
'fee': 'u128',
'minimum_weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
},
}
)
transfer_asset_to_parachain
origin transfers amount of asset to beneficiary on the parachain
Note: asset needs to be registered as foreign token in destination parachain
para_id: destination parachainbeneficiary: account to receiveassetin destination parachainasset: asset to transferamount: amount ofassetto transferdest_weight: optional weight to be paid in destination chain, unlimited in case it'sNone
# Errors
InvalidAccountId:beneficiaryis invalid, i.e could not be converted to
Attributes
| Name | Type |
|---|---|
| para_id | ParachainId |
| beneficiary | Account<T::AccountId> |
| asset_id | T::AssetId |
| amount | T::Balance |
| dest_weight | Option<u64> |
Python
call = substrate.compose_call(
'EfinityXcm', 'transfer_asset_to_parachain', {
'amount': 'u128',
'asset_id': {
'collection_id': 'u128',
'token_id': 'u128',
},
'beneficiary': {
'EVM': '[u8; 20]',
'Substrate': 'AccountId',
},
'dest_weight': (None, 'u64'),
'para_id': (
'Acala',
'Moonbeam',
'Statemint',
),
}
)
transfer_to_parachain
origin transfers amount of EFI to beneficiary on the parachain
Note: EFI needs to be registered as foreign token in destination parachain
para_id: destination parachainbeneficiary: account to receive EFI in destination parachainamount: amount of EFI to transferdest_weight: optional weight to be paid in destination chain, unlimited in case it'sNone
# Errors
InvalidAccountId:beneficiaryis invalid, i.e could not be converted toMultiLocation
Attributes
| Name | Type |
|---|---|
| para_id | ParachainId |
| beneficiary | Account<T::AccountId> |
| amount | T::Balance |
| dest_weight | Option<u64> |
Python
call = substrate.compose_call(
'EfinityXcm', 'transfer_to_parachain', {
'amount': 'u128',
'beneficiary': {
'EVM': '[u8; 20]',
'Substrate': 'AccountId',
},
'dest_weight': (None, 'u64'),
'para_id': (
'Acala',
'Moonbeam',
'Statemint',
),
}
)
Events
MinimumWeightUpdated
Xcm fee and weight updated
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MinimumWeightFeePair<Weight, T::Balance> |
{'minimum_weight': {'ref_time': 'u64', 'proof_size': 'u64'}, 'fee': 'u128'} |
Storage functions
MinimumWeights
The dest_weight limit and fee for executing XCM msg sent by efinityXcm. Must be
sufficient, otherwise the execution of XCM msg on relaychain will fail. For example it is
used for setting the minimum fee (in DOT) for statemint.
XcmWeightFee: map: XcmOperation => MinimumWeightFeePair
Python
result = substrate.query(
'EfinityXcm', 'MinimumWeights', [
{
'ParachainFee': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
'XTokensTransfer': None,
},
]
)
Return value
{'fee': 'u128', 'minimum_weight': {'proof_size': 'u64', 'ref_time': 'u64'}}
Constants
BaseXcmWeight
The actual weight for an XCM message is T::BaseXcmWeight + T::Weigher::weight(&msg).
Value
100000000
Python
constant = substrate.get_constant('EfinityXcm', 'BaseXcmWeight')
NativeCurrencyId
ID of the native currency of the chain (EFI).
Value
{'collection_id': 0, 'token_id': 0}
Python
constant = substrate.get_constant('EfinityXcm', 'NativeCurrencyId')
Errors
InvalidBeneficiaryAddress
Invalid beneficiary
ExtrinsicPause
Calls
pause_extrinsic
Pause execution of extrinsic(s)
The values of pallet_name and extrinsic_name are extracted from the call parameter.
Ex : To pause the multi_tokens pallet, the call parameter should be of the type
pallet_multi_tokens::Call If pause_only_extrinsic is true, then only the extrinsic
is paused, else the entire pallet is paused.
Attributes
| Name | Type |
|---|---|
| call | Box<<T as Config>::Call> |
| pause_only_extrinsic | bool |
Python
call = substrate.compose_call(
'ExtrinsicPause', 'pause_extrinsic', {
'call': 'Call',
'pause_only_extrinsic': 'bool',
}
)
resume_extrinsic
Resume execution of extrinsic(s)
The values of pallet_name and extrinsic_name are extracted from the call parameter.
Ex : To resume the multi_tokens pallet, the call parameter should be of the type
pallet_multi_tokens::Call If pause_only_extrinsic is true, then only the extrinsic
is resumed, else the entire pallet is resumed.
Attributes
| Name | Type |
|---|---|
| call | Box<<T as Config>::Call> |
| resume_only_extrinsic | bool |
Python
call = substrate.compose_call(
'ExtrinsicPause', 'resume_extrinsic', {
'call': 'Call',
'resume_only_extrinsic': 'bool',
}
)
Events
ExtrinsicPaused
Extrinsic is paused.
Attributes
| Name | Type | Composition |
|---|---|---|
| pallet_name | BoundedStringOf<T> |
Bytes |
| extrinsic_name | BoundedStringOf<T> |
Bytes |
ExtrinsicResumed
Extrinsic is resumed
Attributes
| Name | Type | Composition |
|---|---|---|
| pallet_name | BoundedStringOf<T> |
Bytes |
| extrinsic_name | BoundedStringOf<T> |
Bytes |
PalletPaused
All pallet extrinsics are paused.
Attributes
| Name | Type | Composition |
|---|---|---|
| pallet_name | BoundedStringOf<T> |
Bytes |
PalletResumed
All pallet extrinsics are resumed.
Attributes
| Name | Type | Composition |
|---|---|---|
| pallet_name | BoundedStringOf<T> |
Bytes |
Storage functions
PausedExtrinsics
Paused extrinsics map
The key is tuple with the name of the pallet and the extrinsic name and value is an Option<()> which is None if the extrinsic is not paused and Some(()) if it is.
Python
result = substrate.query(
'ExtrinsicPause', 'PausedExtrinsics', [
{
'extrinsic_name': (
None,
'Bytes',
),
'pallet_name': 'Bytes',
},
]
)
Return value
()
Errors
CannotPauseSelf
Cannot pause this pallet or it's extrinsic
CannotProcessInput
Cannot read the pallet or extrinsic name
FuelTanks
Calls
add_account
Adds new account for user_id to fuel tank at tank_id. An account is
required to dispatch calls. A deposit is required, and may be paid by
the user or the fuel tank, depending on the settings.
### Errors
- FuelTankNotFound if fuel tank at tank_id does not exist
- NoPermission if origin does not have permission to add an account
- AccountAlreadyExists if account at user_id already exists
Attributes
| Name | Type |
|---|---|
| tank_id | LookupSourceOf<T> |
| user_id | LookupSourceOf<T> |
Python
call = substrate.compose_call(
'FuelTanks', 'add_account', {
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'user_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
batch_add_account
Similar to add_account but takes a list of AccountIds to
insert into a fuel tank.
### Errors
- FuelTankNotFound if fuel tank at tank_id does not exist
- NoPermission if origin does not have permission to add an account
- AccountAlreadyExists if account at user_id already exists
Attributes
| Name | Type |
|---|---|
| tank_id | LookupSourceOf<T> |
| user_ids | BatchUserAccountsOf<T> |
Python
call = substrate.compose_call(
'FuelTanks', 'batch_add_account', {
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'user_ids': [
{
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
],
}
)
batch_remove_account
Similar to remove_account but takes a list of AccountIds to
remove from a fuel tank.
### Errors
- FuelTankNotFound if fuel tank at tank_id does not exist
- NoPermission if origin does not have permission to add an account
- AccountNotFound if account at user_id does not exist
Attributes
| Name | Type |
|---|---|
| tank_id | LookupSourceOf<T> |
| user_ids | BatchUserAccountsOf<T> |
Python
call = substrate.compose_call(
'FuelTanks', 'batch_remove_account', {
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'user_ids': [
{
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
],
}
)
create_fuel_tank
Creates a fuel tank, given a descriptor
# Errors
- FuelTankAlreadyExists if tank_id already exists
- DuplicateRuleKinds if a rule set has multiple rules of the same kind
Attributes
| Name | Type |
|---|---|
| descriptor | FuelTankDescriptorOf<T> |
Python
call = substrate.compose_call(
'FuelTanks', 'create_fuel_tank', {
'descriptor': {
'account_rules': [
{
'RequireToken': {
'collection_id': 'u128',
'token_id': 'u128',
},
'WhitelistedCallers': 'scale_info::201',
},
],
'name': 'Bytes',
'provides_deposit': 'bool',
'rule_sets': 'scale_info::408',
'user_account_management': (
None,
{
'tank_reserves_account_creation_deposit': 'bool',
'tank_reserves_existential_deposit': 'bool',
},
),
},
}
)
destroy_fuel_tank
Destroy the fuel tank by scheduling the deletion for on_finalize to execute
Only callable by owner
The fuel tank must be frozen
Can only be destroyed if all accounts are removed
Attributes
| Name | Type |
|---|---|
| tank_id | LookupSourceOf<T> |
Python
call = substrate.compose_call(
'FuelTanks', 'destroy_fuel_tank', {
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
dispatch
Dispatch a call using the tank_id subject to the rules of rule_set_id
# Errors
- FuelTankNotFound if tank_id does not exist.
- InvalidRuleSetId if rule_set_id does not exist
- UsageRestricted if caller is not part of ruleset whitelist
- TransactionExceedsFuelBurnLimit if call exceeds the max fee limit set by ruleset
- TransactionExceedsUserBudget if call exceeds the max user budget limit set by
ruleset
- TransactionExceedsFuelTankBudget if call exceeds the max fuel tank budget set by
ruleset
- CallerDoesNotHaveRuleSetTokenBalance if caller does not own the tokens to use the
ruleset
- TransactionNotPermitted if the call is not in the list of permitted calls of ruleset
- Overflow if amount overflows type
- UserBalanceLowForRemainingFee if caller does not have enough balance to pay for
remaining_fee when pays_remaining_fee is true
- FuelTankOutOfFunds if the fuel tank account cannot pay fees
Attributes
| Name | Type |
|---|---|
| tank_id | <T::Lookup as StaticLookup>::Source |
| rule_set_id | T::RuleSetId |
| call | Box<<T as Config>::Call> |
| pays_remaining_fee | bool |
Python
call = substrate.compose_call(
'FuelTanks', 'dispatch', {
'call': 'Call',
'pays_remaining_fee': 'bool',
'rule_set_id': 'u32',
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
dispatch_and_touch
Same as dispatch, but creates an account for origin if it does not
exist and is allowed by the fuel tank's user_account_management settings.
# Errors
Returns the same errors as dispatch and
add_account
Attributes
| Name | Type |
|---|---|
| tank_id | <T::Lookup as StaticLookup>::Source |
| rule_set_id | T::RuleSetId |
| call | Box<<T as Config>::Call> |
| pays_remaining_fee | bool |
Python
call = substrate.compose_call(
'FuelTanks', 'dispatch_and_touch', {
'call': 'Call',
'pays_remaining_fee': 'bool',
'rule_set_id': 'u32',
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
force_set_consumption
Force set the fuel tank consumption
If user_id is Some, it sets the consumption for that account.
If it is None, it sets the consumption on the fuel tank directly.
# Errors
- AccountNotFound if user_id is Some and account does not exist
- FuelTankNotFound if tank_id does not exist
- NoPermission if caller is not ForceOrigin or fuel tank owner
Attributes
| Name | Type |
|---|---|
| tank_id | LookupSourceOf<T> |
| user_id | Option<LookupSourceOf<T>> |
| rule_set_id | T::RuleSetId |
| consumption | ConsumptionOf<T> |
Python
call = substrate.compose_call(
'FuelTanks', 'force_set_consumption', {
'consumption': {
'last_reset_block': (
None,
'u32',
),
'total_consumed': 'u128',
},
'rule_set_id': 'u32',
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'user_id': (
None,
{
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
),
}
)
insert_rule_set
Insert a new rule set for tank_id and rule_set_id. It can be a new rule set
or it can replace an existing one. If it is replacing a rule set, a rule that is storing
data on any accounts cannot be removed. Use [Self::remove_account_rule_data] to remove
the data first. If a rule is being replaced, it will be mutated with the new parameters,
and it will maintain any persistent data it already has.
This is only callable by the fuel tank's owner.
### Errors
- FuelTankNotFound if tank_id does not exist.
- NoPermission if caller is not the fuel tank owner
- RequiresFrozenTankOrRuleset if tank or rule set is not frozen
- CannotRemoveRuleThatIsStoringAccountData if removing a rule that is storing account
data
- MaxRuleSetsExceeded if max number of rule sets was exceeded
- DuplicateRuleKinds if adding a rule set with multiple rules of the same kind
Attributes
| Name | Type |
|---|---|
| tank_id | LookupSourceOf<T> |
| rule_set_id | T::RuleSetId |
| rules | RuleDescriptorsOf<T> |
Python
call = substrate.compose_call(
'FuelTanks', 'insert_rule_set', {
'rule_set_id': 'u32',
'rules': [
{
'MaxFuelBurnPerTransaction': 'u128',
'PermittedCalls': 'scale_info::400',
'PermittedExtrinsics': [
'Call',
],
'RequireToken': {
'collection_id': 'u128',
'token_id': 'u128',
},
'TankFuelBudget': {
'budget': {
'amount': 'u128',
'reset_period': 'u32',
},
'consumption': {
'last_reset_block': (
None,
'u32',
),
'total_consumed': 'u128',
},
},
'UserFuelBudget': {
'amount': 'u128',
'reset_period': 'u32',
},
'WhitelistedCallers': 'scale_info::201',
'WhitelistedCollections': 'scale_info::389',
},
],
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
mutate_fuel_tank
Apply mutation to fuel tank with tank_id.
# Errors
- FuelTankNotFound if tank_id does not exist.
- NoPermission if origin is not the fuel tank owner
Attributes
| Name | Type |
|---|---|
| tank_id | <T::Lookup as StaticLookup>::Source |
| mutation | T::TankMutation |
Python
call = substrate.compose_call(
'FuelTanks', 'mutate_fuel_tank', {
'mutation': {
'account_rules': (
None,
[
{
'RequireToken': {
'collection_id': 'u128',
'token_id': 'u128',
},
'WhitelistedCallers': 'scale_info::201',
},
],
),
'provides_deposit': (
None,
'bool',
),
'user_account_management': {
'NoMutation': None,
'SomeMutation': (
None,
{
'tank_reserves_account_creation_deposit': 'bool',
'tank_reserves_existential_deposit': 'bool',
},
),
},
},
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_account
Removes account for user_id from fuel tank at tank_id. Any deposits
are returned.
### Errors
- FuelTankNotFound if fuel tank at tank_id does not exist
- NoPermission if origin does not have permission to add an account
- AccountNotFound if account at user_id does not exist
Attributes
| Name | Type |
|---|---|
| tank_id | LookupSourceOf<T> |
| user_id | LookupSourceOf<T> |
Python
call = substrate.compose_call(
'FuelTanks', 'remove_account', {
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'user_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_account_rule_data
Remove account rule data if it exists. Only callable by the fuel tank's owner. Requires
the fuel tank or the rule set to be frozen.
### Errors
- FuelTankNotFound if fuel tank for tank_id doesn't exist
- NoPermission if called by non-owner
- AccountNotFound if account does not exist for user_id
- RuleSetNotFound if rule set does not exist for rule_set_id
- RequiresFrozenTankOrRuleset if tank or rule set is not frozen
- RuleNotFound if rule does not exist for rule_kind
Attributes
| Name | Type |
|---|---|
| tank_id | LookupSourceOf<T> |
| user_id | LookupSourceOf<T> |
| rule_set_id | T::RuleSetId |
| rule_kind | DispatchRuleKind |
Python
call = substrate.compose_call(
'FuelTanks', 'remove_account_rule_data', {
'rule_kind': (
'WhitelistedCallers',
'WhitelistedCollections',
'MaxFuelBurnPerTransaction',
'UserFuelBudget',
'TankFuelBudget',
'RequireToken',
'PermittedCalls',
'PermittedExtrinsics',
),
'rule_set_id': 'u32',
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'user_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
remove_rule_set
Remove rule set for tank_id and rule_set_id. A rule that is storing data on
any accounts cannot be removed. Use [Self::remove_account_rule_data] to remove the
data first. This is only callable by the fuel tank's owner.
# Errors
- FuelTankNotFound if tank_id does not exist.
- NoPermission if caller is not the fuel tank owner
- RequiresFrozenTankOrRuleset if tank or rule set is not frozen
- CannotRemoveRuleThatIsStoringAccountData if removing a rule that is storing account
data
Attributes
| Name | Type |
|---|---|
| tank_id | LookupSourceOf<T> |
| rule_set_id | T::RuleSetId |
Python
call = substrate.compose_call(
'FuelTanks', 'remove_rule_set', {
'rule_set_id': 'u32',
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
schedule_mutate_freeze_state
Schedule mutating of is_frozen state that determines if fuel tank or rule set can be
used
Additional 1 read and 1 write are added to account for on_finalize storage operations
# Errors
- FuelTankNotFound if tank_id does not exist.
- NoPermission if caller is not a fuel tank owner
- FreezeQueueFull if the queue is full
Attributes
| Name | Type |
|---|---|
| tank_id | <T::Lookup as StaticLookup>::Source |
| rule_set_id | Option<T::RuleSetId> |
| is_frozen | bool |
Python
call = substrate.compose_call(
'FuelTanks', 'schedule_mutate_freeze_state', {
'is_frozen': 'bool',
'rule_set_id': (None, 'u32'),
'tank_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events
AccountAdded
An account was added to a FuelTank
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
| user_id | T::AccountId |
AccountId |
| tank_deposit | T::Balance |
u128 |
| user_deposit | T::Balance |
u128 |
AccountRemoved
An account was removed from a FuelTank
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
| user_id | T::AccountId |
AccountId |
AccountRuleDataRemoved
Account data of AccountId was removed from RuleSetId
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
| user_id | T::AccountId |
AccountId |
| rule_set_id | T::RuleSetId |
u32 |
| rule_kind | DispatchRuleKind |
('WhitelistedCallers', 'WhitelistedCollections', 'MaxFuelBurnPerTransaction', 'UserFuelBudget', 'TankFuelBudget', 'RequireToken', 'PermittedCalls', 'PermittedExtrinsics') |
CallDispatched
A call was dispatched through a FuelTank.
Attributes
| Name | Type | Composition |
|---|---|---|
| caller | T::AccountId |
AccountId |
| tank_id | T::AccountId |
AccountId |
DispatchFailed
The dispatch of a call has failed
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
| caller | T::AccountId |
AccountId |
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
FreezeStateMutated
The freeze state change for fuel tank or its rule set was executed in on_finalize
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
| rule_set_id | Option<T::RuleSetId> |
(None, 'u32') |
| is_frozen | bool |
bool |
FuelTankCreated
A new FuelTank was created.
Attributes
| Name | Type | Composition |
|---|---|---|
| owner | T::AccountId |
AccountId |
| name | FuelTankNameOf<T> |
Bytes |
| tank_id | T::AccountId |
AccountId |
FuelTankDestroyed
A FuelTank was destroyed
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
FuelTankMutated
A FuelTank was mutated
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
| mutation | T::TankMutation |
{'user_account_management': {'NoMutation': None, 'SomeMutation': (None, {'tank_reserves_existential_deposit': 'bool', 'tank_reserves_account_creation_deposit': 'bool'})}, 'provides_deposit': (None, 'bool'), 'account_rules': (None, [{'WhitelistedCallers': 'scale_info::201', 'RequireToken': {'collection_id': 'u128', 'token_id': 'u128'}}])} |
MutateFreezeStateScheduled
The freeze state mutation for fuel tank or its rule set was scheduled
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
| rule_set_id | Option<T::RuleSetId> |
(None, 'u32') |
| is_frozen | bool |
bool |
RuleSetInserted
A new rule set was added to FuelTank
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
| rule_set_id | T::RuleSetId |
u32 |
RuleSetRemoved
A rule set was removed from FuelTank
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
| rule_set_id | T::RuleSetId |
u32 |
ScheduleMutateFreezeStateFailed
The freeze state change for fuel tank or its rule set failed in on_finalize
Attributes
| Name | Type | Composition |
|---|---|---|
| tank_id | T::AccountId |
AccountId |
| rule_set_id | Option<T::RuleSetId> |
(None, 'u32') |
| is_frozen | bool |
bool |
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
Storage functions
Accounts
Mapping of Fuel Tanks and their user Accounts to account data
Python
result = substrate.query(
'FuelTanks', 'Accounts', ['AccountId', 'AccountId']
)
Return value
{
'rule_data_sets': 'scale_info::594',
'tank_deposit': 'u128',
'user_deposit': 'u128',
}
FreezeQueue
The queue for fuel tank and rule set freezing
Composed of (tank_id, rule_set_id, new is_frozen value)
Python
result = substrate.query(
'FuelTanks', 'FreezeQueue', []
)
Return value
[{'is_frozen': 'bool', 'rule_set_id': (None, 'u32'), 'tank_id': 'AccountId'}]
Tanks
Mapping of Fuel Tanks accounts to their data
Python
result = substrate.query(
'FuelTanks', 'Tanks', ['AccountId']
)
Return value
{
'account_count': 'u32',
'account_rules': 'scale_info::581',
'is_frozen': 'bool',
'name': 'Bytes',
'owner': 'AccountId',
'provides_deposit': 'bool',
'rule_sets': 'scale_info::575',
'total_reserved': 'u128',
'user_account_management': (
None,
{
'tank_reserves_account_creation_deposit': 'bool',
'tank_reserves_existential_deposit': 'bool',
},
),
}
Constants
AccountCreationDeposit
Deposit for creating an account
Value
1000000000000000000
Python
constant = substrate.get_constant('FuelTanks', 'AccountCreationDeposit')
Levy
The Levy applied to all transactions in Efinity.
Value
750000000
Python
constant = substrate.get_constant('FuelTanks', 'Levy')
LevyScale
value of a unit of the independant variable in EFI for the levy discount according to f(x) = (1/2)^x. Cannot be 0.
Value
3000
Python
constant = substrate.get_constant('FuelTanks', 'LevyScale')
MaxAccountRuleDataLength
Max length of data a rule can store per account
Value
128
Python
constant = substrate.get_constant('FuelTanks', 'MaxAccountRuleDataLength')
MaxBatchAccounts
The maximum number of accounts for batch operations
Value
100
Python
constant = substrate.get_constant('FuelTanks', 'MaxBatchAccounts')
MaxCallFilters
The maximum number of permitted calls
Value
5
Python
constant = substrate.get_constant('FuelTanks', 'MaxCallFilters')
MaxCallSize
The maximum number of rule sets per fuel tank
Value
100
Python
constant = substrate.get_constant('FuelTanks', 'MaxCallSize')
MaxExtrinsicNameLength
The maximum length for extrinsics for PermittedExtrinsic rule
Value
100
Python
constant = substrate.get_constant('FuelTanks', 'MaxExtrinsicNameLength')
MaxFreezeQueueLength
The maximum number of fuel tank freeze state mutations that can be queued
Value
10
Python
constant = substrate.get_constant('FuelTanks', 'MaxFreezeQueueLength')
MaxFuelTankNameLength
The maximum length for fuel tank name
Value
32
Python
constant = substrate.get_constant('FuelTanks', 'MaxFuelTankNameLength')
MaxPermittedExtrinsicLength
The maximum number of extrinsics to allow for PermittedExtrinsic rule
Value
100
Python
constant = substrate.get_constant('FuelTanks', 'MaxPermittedExtrinsicLength')
MaxRuleSets
The maximum number of rule sets per fuel tank
Value
5
Python
constant = substrate.get_constant('FuelTanks', 'MaxRuleSets')
MaxRulesPerSet
Maximum number of rules in a ruleset
Value
10
Python
constant = substrate.get_constant('FuelTanks', 'MaxRulesPerSet')
MaxUserHistorySize
The maximum number of user history that can be stored
Value
10000
Python
constant = substrate.get_constant('FuelTanks', 'MaxUserHistorySize')
MaxWhitelistedCallers
The maximum number of whitelisted callers per fuel tank
Value
100
Python
constant = substrate.get_constant('FuelTanks', 'MaxWhitelistedCallers')
MaxWhitelistedCollections
Maximum number of whitelisted collections for a fuel tank
Value
256
Python
constant = substrate.get_constant('FuelTanks', 'MaxWhitelistedCollections')
ReserveIdentifier
The identifier used for currency reserves
Value
'0x6675656c74616e6b'
Python
constant = substrate.get_constant('FuelTanks', 'ReserveIdentifier')
Salt
The salt used for address generation
Value
'0x6566696e69747979'
Python
constant = substrate.get_constant('FuelTanks', 'Salt')
TankCreationDeposit
Deposit for creating a new fuel tank
Value
10000000000000000000
Python
constant = substrate.get_constant('FuelTanks', 'TankCreationDeposit')
Errors
AccountAlreadyExists
The account already exists
AccountContainsRuleData
A user cannot remove an account that is storing data for a rule
AccountNotFound
The account was not found
CallerDoesNotHaveRuleSetTokenBalance
The user does not have the token required by rule set
CannotRemoveRuleThatIsStoringAccountData
A rule cannot be removed from a rule set if it is storing data on any account
DecodeUserRuleDataFailed
The user rule data could not be decoded
DestroyUnfrozenTank
Destroying fuel tank is not possible while it is not frozen
DestroyWithExistingAccounts
Destroying fuel tank is not possible while it has existing accounts attached
DuplicateRuleKinds
A fuel tank cannot have more than one rule of the same kind
FreezeQueueFull
The queue for fuel tank and rule set freezing is full
FuelTankAlreadyExists
Fuel Tank already exists
FuelTankFrozen
The fuel tank is frozen
FuelTankNotFound
Fuel Tank not found
FuelTankOutOfFunds
Fuel tank doesnt have enough funds
InsufficientBalance
Not enough funds to perform operation
InvalidRuleSet
The rule set of the fuel tank is misconfigured. This error should never occur.
MaxRuleSetsExceeded
Max number of rules sets per fuel tank was exceeded
MintDepositCalculationError
Problems calculating the mint deposit for a call
MissingRequiredRule
A rule that is required for this operation does not exist
MissingRequiredRuleUserData
User data for the required rule does not exist
NoDataToRemove
The user does not have any data stored for rule set
NoPermission
User does not have permission to perform operation
RequiresFrozenTank
The fuel tank must be frozen for this operation
RequiresFrozenTankOrRuleset
Either the tank or ruleset must be frozen for this operation
RuleNotFound
The rule is missing
RuleSetNotFound
The rule set does not exist
UsageRestricted
Fuel tank cannot be used due to restrictions
UserRuleDataExceededMaxSize
The size of the user rule data is greater than the allowed amount
Marketplace
Calls
cancel_listing
Cancels the listing with listing_id. Only callable by the seller.
### Parameters
- listing_id: The ID of the listing to cancel
### Errors
- ListingNotFound if the listing under listing_id does not exist
- NoPermission if the listing seller is not the caller, origin
Attributes
| Name | Type |
|---|---|
| listing_id | ListingIdOf<T> |
Python
call = substrate.compose_call(
'Marketplace', 'cancel_listing', {'listing_id': '[u8; 32]'}
)
create_listing
Places a sell order. Requires make_asset_id or take_asset_id to be a Currency.
The id for the listing is generated by hashing the encoded bytes of the listing.
### Parameters
- make_asset_id: The id of the asset being sold
- take_asset_id: The id of the asset being requested
- amount: The number of units being sold
- price: The requested price for each unit. If it's an auction, this is the minimum
bid
- salt: Can be used to differentiate listings
- auction_data: Including this makes the listing an auction
### Errors
- InvalidAuctionStart if the start is less than the current block +
ListingActiveDelay
- InvalidAuctionEnded if auction ends before it starts
- NoCurrency Neither the make or take side is considered a currency
- ListingForbidden if make or take side tokens are not allowed to be listed
- CurrencyNotAllowedAsRoyalty if currency cannot be used as a royalty
- LowBaseCurrencyBalance if base currency balance is too low
- LowTokenBalance token balance is too low for reserve
- ListingAlreadyExists if a listing with the same ID already exists
Attributes
| Name | Type |
|---|---|
| make_asset_id | AssetIdOf<T> |
| take_asset_id | AssetIdOf<T> |
| amount | TokenBalanceOf<T> |
| price | TokenBalanceOf<T> |
| salt | Salt<T> |
| auction_data | Option<AuctionDataOf<T>> |
Python
call = substrate.compose_call(
'Marketplace', 'create_listing', {
'amount': 'u128',
'auction_data': (
None,
{
'end_block': 'u32',
'start_block': 'u32',
},
),
'make_asset_id': {
'collection_id': 'u128',
'token_id': 'u128',
},
'price': 'u128',
'salt': 'Bytes',
'take_asset_id': {
'collection_id': 'u128',
'token_id': 'u128',
},
}
)
fill_listing
Fills a fixed price listing. This will execute immediately.
### Parameters
- listing_id: The id for the listing to buy from
- amount: The number of units purchased
### Errors
- ListingNotFound if the listing under listing_id does not exist
- BuyerIsSeller if the buyer is the seller of the listing
- ListingIsWrongType if the listing is not under auction
- InvalidAmount if the amount that still needs to be filled is greater than amount
- ListingNotActive if the listing has not passed the ListingActiveDelay yet
- Overflow if amount * listing_price is too large
- TakeValueUnderMinimum if the listings take value is under the minimum required
- LowTokenBalance if the buyer does not have enough tokens for reserve
Attributes
| Name | Type |
|---|---|
| listing_id | ListingIdOf<T> |
| amount | TokenBalanceOf<T> |
Python
call = substrate.compose_call(
'Marketplace', 'fill_listing', {
'amount': 'u128',
'listing_id': '[u8; 32]',
}
)
finalize_auction
Finalize the auction with id: listing_id. This will end the auction and transfer
funds. It fails if the auction is not over.
### Parameters
- listing_id: The ID for the listing to finalize
### Errors
- ListingNotFound if listing under listing_id does not exist
- ListingIsWrongType if listing is not an auction
- AuctionNotOver if the auction has not finished yet
- TakeValueUnderMinimum if the take value is less than the minimum required
- Overflow if bid price * listing_amount is too large
Attributes
| Name | Type |
|---|---|
| listing_id | ListingIdOf<T> |
Python
call = substrate.compose_call(
'Marketplace', 'finalize_auction', {'listing_id': '[u8; 32]'}
)
place_bid
Places a bid on a listing. The listing must be an auction, and it must be currently
active.
### Parameters
- listing_id: The id for the listing to buy from
- price: The price for a single unit
### Errors
- ListingNotFound if listing under listing_id does not exist
- BuyerIsSeller if the bidder is the seller of the listing
- ListingWrongType if listing is not an auction
- InactiveAuction if listing operates outside of specified start and end block
- Overflow if added bid is too large to store
- InvalidPrice if price is less than mininum_price for a bid
- Overflow if older bid * amount is too large
- Overflow if new bid price is too large
Attributes
| Name | Type |
|---|---|
| listing_id | ListingIdOf<T> |
| price | TokenBalanceOf<T> |
Python
call = substrate.compose_call(
'Marketplace', 'place_bid', {
'listing_id': '[u8; 32]',
'price': 'u128',
}
)
set_protocol_fee
Change the protocol fee to protocol_fee. Fails if origin is invalid.
### Parameters
- protocol_fee: Percentage of fee to set
Attributes
| Name | Type |
|---|---|
| protocol_fee | Perbill |
Python
call = substrate.compose_call(
'Marketplace', 'set_protocol_fee', {'protocol_fee': 'u32'}
)
Events
AuctionFinalized
An auction was finalized
Attributes
| Name | Type | Composition |
|---|---|---|
| listing_id | ListingIdOf<T> |
[u8; 32] |
| winning_bid | Option<BidOf<T>> |
(None, {'bidder': 'AccountId', 'price': 'u128'}) |
| protocol_fee | TokenBalanceOf<T> |
u128 |
| royalty | TokenBalanceOf<T> |
u128 |
BidPlaced
A bid was placed
Attributes
| Name | Type | Composition |
|---|---|---|
| listing_id | ListingIdOf<T> |
[u8; 32] |
| bid | BidOf<T> |
{'bidder': 'AccountId', 'price': 'u128'} |
ListingCancelled
A listing was cancelled
Attributes
| Name | Type | Composition |
|---|---|---|
| listing_id | ListingIdOf<T> |
[u8; 32] |
ListingCreated
A listing was created
Attributes
| Name | Type | Composition |
|---|---|---|
| listing_id | ListingIdOf<T> |
[u8; 32] |
| listing | ListingOf<T> |
{'seller': 'AccountId', 'make_asset_id': {'collection_id': 'u128', 'token_id': 'u128'}, 'take_asset_id': {'collection_id': 'u128', 'token_id': 'u128'}, 'amount': 'u128', 'price': 'u128', 'min_take_value': 'u128', 'fee_side': ('NoFee', 'Make', 'Take'), 'creation_block': 'u32', 'deposit': 'u128', 'salt': 'Bytes', 'data': {'FixedPrice': None, 'Auction': {'start_block': 'u32', 'end_block': 'u32'}}, 'state': {'FixedPrice': {'amount_filled': 'u128'}, 'Auction': {'high_bid': (None, {'bidder': 'AccountId', 'price': 'u128'})}}} |
ListingFilled
A listing was filled or partially filled
Attributes
| Name | Type | Composition |
|---|---|---|
| listing_id | ListingIdOf<T> |
[u8; 32] |
| buyer | T::AccountId |
AccountId |
| amount_filled | TokenBalanceOf<T> |
u128 |
| amount_remaining | TokenBalanceOf<T> |
u128 |
| protocol_fee | TokenBalanceOf<T> |
u128 |
| royalty | TokenBalanceOf<T> |
u128 |
ProtocolFeeSet
Protocol fee was set
Attributes
| Name | Type | Composition |
|---|---|---|
| protocol_fee | Perbill |
u32 |
Storage functions
Info
Stores information about the marketplace
Python
result = substrate.query(
'Marketplace', 'Info', []
)
Return value
{
'auction_listing_count': 'u32',
'fixed_price_listing_count': 'u32',
'protocol_fee': 'u32',
}
ListingIdsByAccountId
Listing Ids by AccountId
Python
result = substrate.query(
'Marketplace', 'ListingIdsByAccountId', ['AccountId', '[u8; 32]']
)
Return value
()
ListingIdsByMakeAsset
Listing Ids by make asset's collection id and token id
Python
result = substrate.query(
'Marketplace', 'ListingIdsByMakeAsset', ['u128', 'u128']
)
Return value
'[u8; 32]'
ListingIdsByTakeAsset
Listing Ids by take asset's collection id and token id
Python
result = substrate.query(
'Marketplace', 'ListingIdsByTakeAsset', ['u128', 'u128']
)
Return value
'[u8; 32]'
Listings
Listings by ID
Python
result = substrate.query(
'Marketplace', 'Listings', ['[u8; 32]']
)
Return value
{
'amount': 'u128',
'creation_block': 'u32',
'data': {'Auction': {'end_block': 'u32', 'start_block': 'u32'}, 'FixedPrice': None},
'deposit': 'u128',
'fee_side': ('NoFee', 'Make', 'Take'),
'make_asset_id': {'collection_id': 'u128', 'token_id': 'u128'},
'min_take_value': 'u128',
'price': 'u128',
'salt': 'Bytes',
'seller': 'AccountId',
'state': {
'Auction': {
'high_bid': (None, {'bidder': 'AccountId', 'price': 'u128'}),
},
'FixedPrice': {'amount_filled': 'u128'},
},
'take_asset_id': {'collection_id': 'u128', 'token_id': 'u128'},
}
Constants
ListingActiveDelay
The delay before a listing is considered active
Value
5
Python
constant = substrate.get_constant('Marketplace', 'ListingActiveDelay')
ListingDeposit
The deposit for creating a listing
Value
2025700000000000000
Python
constant = substrate.get_constant('Marketplace', 'ListingDeposit')
MaxRoundingError
The max amount that can be lost due to rounding before failing
Value
1000
Python
constant = substrate.get_constant('Marketplace', 'MaxRoundingError')
MaxSaltLength
Max length of salt used when creating listings and bids
Value
32
Python
constant = substrate.get_constant('Marketplace', 'MaxSaltLength')
MinimumBidIncreasePercentage
The percentage the minimum bid in an auction must increase by
Value
50000000
Python
constant = substrate.get_constant('Marketplace', 'MinimumBidIncreasePercentage')
ReserveIdentifier
ID used by the pallet for making reservations
Value
'0x6d61726b74706c63'
Python
constant = substrate.get_constant('Marketplace', 'ReserveIdentifier')
Errors
AuctionNotOver
Cannot finalize an auction that is not over
BuyerIsSeller
The seller is not allowed to buy their own listing
CurrencyNotAllowedAsRoyalty
The currency is not allowed to be used as a royalty payment
InactiveAuction
Cannot bid on an auction that has not started or is over
InvalidAmount
The amount is invalid
InvalidAuctionEnd
The end time of the auction must be after the start
InvalidAuctionStart
The start time of the auction must be greater than the current block plus the minimum requirement
InvalidPrice
The price is invalid
ListingAlreadyExists
A listing with this id already exists
ListingForbidden
Listing is forbidden for this token
ListingIsWrongType
An action was taken that is not compatible with the listing's type.
ListingNotActive
The listing has not crossed the mandatory delay before its considered active
ListingNotFound
The listing does not exist
LowBaseCurrencyBalance
The base currency balance is too low
LowTokenBalance
The token balance is too low
MaxRoundingErrorExceeded
The max rounding error was exceeded
NoCurrency
Neither the make side or the take side of the listing is considered a currency
NoPermission
The caller does not have permission for this operation
TakeValueUnderMinimum
The take value is under the minimum requirement
TransferParamCreationFailed
Transfer params could not be created
UnableToFill
the order cannot be filled
MultiTokens
Calls
approve_collection
Approve the operator to manage all of origin's tokens belonging to collection_id.
If an expiration is provided, the approval will end when it expires.
# Errors
- CannotApproveSelf - if origin == operator
- AlreadyExpired - if expiration is earlier than now
- CollectionAccountNotFound if the collection account does not exist
- MaxApprovalsExceeded if approval count has exceeded the maximum
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| operator | T::AccountId |
| expiration | T::Expiration |
Python
call = substrate.compose_call(
'MultiTokens', 'approve_collection', {
'collection_id': 'u128',
'expiration': (None, 'u32'),
'operator': 'AccountId',
}
)
approve_token
Approve operator to transfer up to amount of caller's balance for token_id of
collection_id. An expiration can be provided. current_amount must match the
current approved amount.
# Errors
- CannotApproveSelf if origin == operator
- CollectionAlreadyApproved if collection_id is already approved
- AlreadyExpired if expiration is earlier than now
- TokenAccountNotFound if the token account does not exist
- MaxApprovalsExceeded if approval count has exceeded the maximum
- WrongCurrentApprovedAmount if current_amount does not match the current approval
amount
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| token_id | T::TokenId |
| operator | T::AccountId |
| amount | T::TokenBalance |
| expiration | T::Expiration |
| current_amount | T::TokenBalance |
Python
call = substrate.compose_call(
'MultiTokens', 'approve_token', {
'amount': 'u128',
'collection_id': 'u128',
'current_amount': 'u128',
'expiration': (None, 'u32'),
'operator': 'AccountId',
'token_id': 'u128',
}
)
batch_mint
Collection owner mints tokens of collection_id to recipients consisting of an
AccountId and MintParams. A single mint failure will fail all of them in the batch.
# Errors
- AmountZero if amount == 0.
- NotFound if collection does not exist.
- NoPermission if caller is not allowed to mint the collection.
- MintForbidden if the policy disallows the operation
- BalanceOverflow if amount + current_total_supply overflows its type.
- TokenCountOverflow if the token_count overflows
- TokenMintCapExceeded if the mint policy TokenCap does not allow minting
- MaxTokenCountExceeded if the mint policy max_token_count is exceeded
- DepositReserveFailed if the issuer does not have sufficent balance for token deposit
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| recipients | MintRecipientsOf<T> |
Python
call = substrate.compose_call(
'MultiTokens', 'batch_mint', {
'collection_id': 'u128',
'recipients': [
{
'account_id': 'AccountId',
'params': {
'CreateForeignToken': {
'behavior': (
None,
{
'HasRoyalty': 'scale_info::112',
'IsCurrency': None,
},
),
'existential_deposit': 'u128',
'listing_forbidden': 'bool',
'metadata': {
'Foreign': {
'decimal_count': 'u32',
'location': (
None,
'scale_info::66',
),
'name': 'Bytes',
'symbol': 'Bytes',
},
'Native': None,
},
'token_id': 'u128',
},
'CreateToken': {
'attributes': [
{
'key': 'Bytes',
'value': 'Bytes',
},
],
'behavior': (
None,
{
'HasRoyalty': 'scale_info::112',
'IsCurrency': None,
},
),
'cap': (
None,
{
'SingleMint': None,
'Supply': 'u128',
},
),
'initial_supply': 'u128',
'listing_forbidden': 'bool',
'token_id': 'u128',
'unit_price': 'u128',
},
'Mint': {
'amount': 'u128',
'token_id': 'u128',
'unit_price': (
None,
'u128',
),
},
},
},
],
}
)
batch_set_attribute
Collection owner sets attributes to collection_id
If token_id is None, the attribute is added to the collection. If it is Some, the
attribute is added to the token.
# Errors
- InvalidAttributeKey if key.len() == 0
- CollectionNotFound if collection_id does not exist.
- TokenNotFound if token_id is Some and does not exist.
- NoPermission if source account is not the owner of the collection.
- Overflow if an attribute counter overflows
- DepositReserveFailed if unable to reserve the deposit for the attribute storage.
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| token_id | Option<T::TokenId> |
| attributes | AttributesOf<T> |
Python
call = substrate.compose_call(
'MultiTokens', 'batch_set_attribute', {
'attributes': [
{
'key': 'Bytes',
'value': 'Bytes',
},
],
'collection_id': 'u128',
'token_id': (None, 'u128'),
}
)
batch_transfer
Transfers the specific amount of tokens of collection to recipients from origin
account. A single failure will fail all transfers.
# Errors
- AmountZero if amount == 0.
- InvalidTargetAccount if source == target.
- BalanceLow if source does not own enough amount of collection.
- BalanceOverflow if target balance of collection overflows.
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| recipients | TransferRecipientsOf<T> |
Python
call = substrate.compose_call(
'MultiTokens', 'batch_transfer', {
'collection_id': 'u128',
'recipients': [
{
'account_id': 'AccountId',
'params': {
'Operator': {
'amount': 'u128',
'keep_alive': 'bool',
'source': 'AccountId',
'token_id': 'u128',
},
'Simple': {
'amount': 'u128',
'keep_alive': 'bool',
'token_id': 'u128',
},
},
},
],
}
)
burn
Reduces the balance of owner by amount of token_id from collection_id.
It also updates the total supply of collection_id.
# Errors
- NotFound if collection does not exist.
- BalanceLow if owner account does not has enough amount of any token in tokens
of collection.
- CollectionDoesNotSupportGivenToken if tokens is not empty.
- BalanceLow if owner account does not has enough amount of the collection.
- Overflow if amount - supply overflows type, or if burn causes collection.token_count
to
overflow.
- DepositUnreserveFailed if caller does not have enough reserved balance to unreserve
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| params | BurnParamsOf<T> |
Python
call = substrate.compose_call(
'MultiTokens', 'burn', {
'collection_id': 'u128',
'params': {
'amount': 'u128',
'keep_alive': 'bool',
'remove_token_storage': 'bool',
'token_id': 'u128',
},
}
)
create_collection
Creates a new collection from descriptor
# Errors
- DepositReserveFailed if the deposit cannot be reserved
Attributes
| Name | Type |
|---|---|
| descriptor | T::CollectionDescriptor |
Python
call = substrate.compose_call(
'MultiTokens', 'create_collection', {
'descriptor': {
'attributes': [
{
'key': 'Bytes',
'value': 'Bytes',
},
],
'explicit_royalty_currencies': [
{
'collection_id': 'u128',
'token_id': 'u128',
},
],
'policy': {
'attribute': {},
'burn': {},
'market': {
'royalty': (
None,
{
'beneficiary': 'AccountId',
'percentage': 'u32',
},
),
},
'mint': {
'force_single_mint': 'bool',
'max_token_count': (
None,
'u64',
),
'max_token_supply': (
None,
'u128',
),
},
'transfer': {},
},
},
}
)
destroy_collection
Destroys Collection with id. origin must be the owner of the Collection.
# Errors
- NoPermission if origin is not the owner of the collection.
- NotFound if Collection with id does not exist.
- DestroyForbiddenByCollectionEvent if another pallet is blocking the collection's
destruction
- DestroyForbiddenByRemainingTokens if collection still has tokens when destroying
- DestroyForbiddenByAttributeCount if collection still has attributes when destroying
current number of collection attributes.
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
Python
call = substrate.compose_call(
'MultiTokens', 'destroy_collection', {'collection_id': 'u128'}
)
force_create_collection
Creates a new collection from descriptor at collection_id, origin must be root
# Errors
- DepositReserveFailed if the deposit cannot be reserved
Attributes
| Name | Type |
|---|---|
| owner | T::AccountId |
| collection_id | T::CollectionId |
| descriptor | T::CollectionDescriptor |
Python
call = substrate.compose_call(
'MultiTokens', 'force_create_collection', {
'collection_id': 'u128',
'descriptor': {
'attributes': [
{
'key': 'Bytes',
'value': 'Bytes',
},
],
'explicit_royalty_currencies': [
{
'collection_id': 'u128',
'token_id': 'u128',
},
],
'policy': {
'attribute': {},
'burn': {},
'market': {
'royalty': (
None,
{
'beneficiary': 'AccountId',
'percentage': 'u32',
},
),
},
'mint': {
'force_single_mint': 'bool',
'max_token_count': (
None,
'u64',
),
'max_token_supply': (
None,
'u128',
),
},
'transfer': {},
},
},
'owner': 'AccountId',
}
)
force_mutate_collection
Exactly as mutate_collection, except the origin must be root and the caller account
should be specified.
# Errors
- BadOrigin if origin != root
- Same as mutate_collection
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| mutation | T::CollectionMutation |
Python
call = substrate.compose_call(
'MultiTokens', 'force_mutate_collection', {
'collection_id': 'u128',
'mutation': {
'explicit_royalty_currencies': (
None,
[
{
'collection_id': 'u128',
'token_id': 'u128',
},
],
),
'owner': (None, 'AccountId'),
'royalty': {
'NoMutation': None,
'SomeMutation': (
None,
{
'beneficiary': 'AccountId',
'percentage': 'u32',
},
),
},
},
}
)
force_set_attribute
Set the Tokens storage to the given value, origin must be root
# Errors
- BadOrigin if origin != root
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| token_id | Option<T::TokenId> |
| key | T::AttributeKey |
| value | Option<AttributeOf<T>> |
Python
call = substrate.compose_call(
'MultiTokens', 'force_set_attribute', {
'collection_id': 'u128',
'key': 'Bytes',
'token_id': (None, 'u128'),
'value': (
None,
{
'deposit': 'u128',
'value': 'Bytes',
},
),
}
)
force_set_collection
Set the Collections storage to the given value, origin must be root
# Errors
- BadOrigin if origin != root
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| value | Option<CollectionOf<T>> |
Python
call = substrate.compose_call(
'MultiTokens', 'force_set_collection', {
'collection_id': 'u128',
'value': (
None,
{
'attribute_count': 'u32',
'explicit_royalty_currencies': 'scale_info::151',
'owner': 'AccountId',
'policy': {
'attribute': {},
'burn': {},
'market': {
'royalty': (
None,
{
'beneficiary': 'AccountId',
'percentage': 'u32',
},
),
},
'mint': {
'force_single_mint': 'bool',
'max_token_count': (
None,
'u64',
),
'max_token_supply': (
None,
'u128',
),
},
'transfer': {
'is_frozen': 'bool',
},
},
'token_count': 'u64',
'total_deposit': 'u128',
},
),
}
)
force_set_collection_account
Set the CollectionAccounts storage to the given value, origin must be root
# Errors
- BadOrigin if origin != root
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| account_id | <T::Lookup as StaticLookup>::Source |
| value | Option<CollectionAccountOf<T>> |
Python
call = substrate.compose_call(
'MultiTokens', 'force_set_collection_account', {
'account_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'collection_id': 'u128',
'value': (
None,
{
'account_count': 'u32',
'approvals': 'scale_info::162',
'is_frozen': 'bool',
},
),
}
)
force_set_token
Set the Tokens storage to the given value, origin must be root
# Errors
- BadOrigin if origin != root
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| token_id | T::TokenId |
| value | Option<TokenOf<T>> |
Python
call = substrate.compose_call(
'MultiTokens', 'force_set_token', {
'collection_id': 'u128',
'token_id': 'u128',
'value': (
None,
{
'attribute_count': 'u32',
'cap': (
None,
{
'SingleMint': None,
'Supply': 'u128',
},
),
'is_frozen': 'bool',
'listing_forbidden': 'bool',
'market_behavior': (
None,
{
'HasRoyalty': {
'beneficiary': 'AccountId',
'percentage': 'u32',
},
'IsCurrency': None,
},
),
'metadata': {
'Foreign': {
'decimal_count': 'u32',
'location': (
None,
{
'interior': 'scale_info::67',
'parents': 'u8',
},
),
'name': 'Bytes',
'symbol': 'Bytes',
},
'Native': None,
},
'minimum_balance': 'u128',
'mint_deposit': 'u128',
'supply': 'u128',
'unit_price': 'u128',
},
),
}
)
force_set_token_account
Set the TokenAccounts storage to the given value, origin must be root
# Errors
- BadOrigin if origin != root
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| token_id | T::TokenId |
| account_id | <T::Lookup as StaticLookup>::Source |
| value | Option<TokenAccountOf<T>> |
Python
call = substrate.compose_call(
'MultiTokens', 'force_set_token_account', {
'account_id': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'collection_id': 'u128',
'token_id': 'u128',
'value': (
None,
{
'approvals': 'scale_info::176',
'balance': 'u128',
'is_frozen': 'bool',
'locked_balance': 'u128',
'locks': 'scale_info::171',
'named_reserves': 'scale_info::171',
'reserved_balance': 'u128',
},
),
}
)
force_transfer
Exactly as transfer, except the origin must be root and the source account should be
specified.
# Errors
- BadOrigin if origin != root
- Same as transfer
Attributes
| Name | Type |
|---|---|
| source | <T::Lookup as StaticLookup>::Source |
| destination | <T::Lookup as StaticLookup>::Source |
| collection_id | T::CollectionId |
| params | TransferParamsOf<T> |
Python
call = substrate.compose_call(
'MultiTokens', 'force_transfer', {
'collection_id': 'u128',
'destination': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'params': {
'Operator': {
'amount': 'u128',
'keep_alive': 'bool',
'source': 'AccountId',
'token_id': 'u128',
},
'Simple': {
'amount': 'u128',
'keep_alive': 'bool',
'token_id': 'u128',
},
},
'source': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
freeze
Freeze collection, token or account
Attributes
| Name | Type |
|---|---|
| info | FreezeOf<T> |
Python
call = substrate.compose_call(
'MultiTokens', 'freeze', {
'info': {
'collection_id': 'u128',
'freeze_type': {
'Collection': None,
'CollectionAccount': 'AccountId',
'Token': 'u128',
'TokenAccount': {
'account_id': 'AccountId',
'token_id': 'u128',
},
},
},
}
)
mint
origin mints to recipient for collection_id with params using the pallet's
MintPolicy.
# Errors
- AmountZero if amount == 0.
- CollectionNotFound if Collection does not exist.
- TokenNotFound if Token does not exist.
- TokenAlreadyExists if attempting to create a token that already exists
- NoPermission if caller is not allowed to mint the collection.
- Overflow if amount + current_total_supply overflows its type, or if the
token_count
overflows.
- TokenMintCapExceeded if the mint policy TokenCap does not allow minting
- MaxTokenCountExceeded if the mint policy max_token_count is exceeded
- DepositReserveFailed if the issuer does not have sufficent balance for token deposit
- ConflictingLocation if the token is foreign and the location is already mapped to
another asset in AssetIdsByLocation
Attributes
| Name | Type |
|---|---|
| recipient | <T::Lookup as StaticLookup>::Source |
| collection_id | T::CollectionId |
| params | MintParamsOf<T> |
Python
call = substrate.compose_call(
'MultiTokens', 'mint', {
'collection_id': 'u128',
'params': {
'CreateForeignToken': {
'behavior': (
None,
{
'HasRoyalty': {
'beneficiary': 'AccountId',
'percentage': 'u32',
},
'IsCurrency': None,
},
),
'existential_deposit': 'u128',
'listing_forbidden': 'bool',
'metadata': {
'Foreign': {
'decimal_count': 'u32',
'location': (
None,
{
'interior': 'scale_info::67',
'parents': 'u8',
},
),
'name': 'Bytes',
'symbol': 'Bytes',
},
'Native': None,
},
'token_id': 'u128',
},
'CreateToken': {
'attributes': [
{
'key': 'Bytes',
'value': 'Bytes',
},
],
'behavior': (
None,
{
'HasRoyalty': {
'beneficiary': 'AccountId',
'percentage': 'u32',
},
'IsCurrency': None,
},
),
'cap': (
None,
{
'SingleMint': None,
'Supply': 'u128',
},
),
'initial_supply': 'u128',
'listing_forbidden': 'bool',
'token_id': 'u128',
'unit_price': 'u128',
},
'Mint': {
'amount': 'u128',
'token_id': 'u128',
'unit_price': (
None,
'u128',
),
},
},
'recipient': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
mutate_collection
Modify Collection with id by applying mutation
# Errors
- NotFound, if collection_id does not exist.
- NoPermission, if origin is not the owner of collection.
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| mutation | T::CollectionMutation |
Python
call = substrate.compose_call(
'MultiTokens', 'mutate_collection', {
'collection_id': 'u128',
'mutation': {
'explicit_royalty_currencies': (
None,
[
{
'collection_id': 'u128',
'token_id': 'u128',
},
],
),
'owner': (None, 'AccountId'),
'royalty': {
'NoMutation': None,
'SomeMutation': (
None,
{
'beneficiary': 'AccountId',
'percentage': 'u32',
},
),
},
},
}
)
mutate_token
Modify Token with token_id from Collection with collection_id by applying
mutation
# Errors
- CurrencyIncompatibleWithCollectionRoyalty if token has already been assigned a
royalty
- NoPermission if not the collection owner
- TokenNotFound if Token does not exist
- ConflictingLocation if the new location is already occupied
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| token_id | T::TokenId |
| mutation | T::TokenMutation |
Python
call = substrate.compose_call(
'MultiTokens', 'mutate_token', {
'collection_id': 'u128',
'mutation': {
'behavior': {
'NoMutation': None,
'SomeMutation': (
None,
{
'HasRoyalty': {
'beneficiary': 'AccountId',
'percentage': 'u32',
},
'IsCurrency': None,
},
),
},
'listing_forbidden': {
'NoMutation': None,
'SomeMutation': 'bool',
},
'metadata': {
'NoMutation': None,
'SomeMutation': {
'Foreign': {
'decimal_count': 'u32',
'location': (
None,
{
'interior': 'scale_info::67',
'parents': 'u8',
},
),
'name': 'Bytes',
'symbol': 'Bytes',
},
'Native': None,
},
},
},
'token_id': 'u128',
}
)
remove_all_attributes
Removes all attributes from the given collection_id or token_id.
# Errors
- InvalidAttributeCount if attribute_count doesn't match the number of attributes
- CollectionNotFound if Collection with collection_id does not exist.
- TokenNotFound if Token with token_id does not exist.
- NoPermission if origin account is not the owner of the Collection or Token
- other errors from remove_attribute
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| token_id | Option<T::TokenId> |
| attribute_count | u32 |
Python
call = substrate.compose_call(
'MultiTokens', 'remove_all_attributes', {
'attribute_count': 'u32',
'collection_id': 'u128',
'token_id': (None, 'u128'),
}
)
remove_attribute
Removes the key attribute from the given collection_id or token_id.
# Errors
- InvalidAttributeKey if key.len() == 0
- CollectionNotFound if collection_id does not exist.
- TokenNotFound if token_id is Some and does not exist.
- NoPermission if caller is not the owner of the collection.
- Underflow if an attribute counter underflows
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| token_id | Option<T::TokenId> |
| key | T::AttributeKey |
Python
call = substrate.compose_call(
'MultiTokens', 'remove_attribute', {
'collection_id': 'u128',
'key': 'Bytes',
'token_id': (None, 'u128'),
}
)
set_attribute
Sets the attribute key to value for collection_id.
If token_id is None, the attribute is added to the collection. If it is Some, the
attribute is added to the token.
# Errors
- InvalidAttributeKey if key.len() == 0
- CollectionNotFound if collection_id does not exist.
- TokenNotFound if token_id is Some and does not exist.
- NoPermission if source account is not the owner of the collection.
- Overflow if an attribute counter overflows
- DepositReserveFailed if unable to reserve the deposit for the attribute storage.
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| token_id | Option<T::TokenId> |
| key | T::AttributeKey |
| value | T::AttributeValue |
Python
call = substrate.compose_call(
'MultiTokens', 'set_attribute', {
'collection_id': 'u128',
'key': 'Bytes',
'token_id': (None, 'u128'),
'value': 'Bytes',
}
)
thaw
Thaw collection, token or account
Attributes
| Name | Type |
|---|---|
| info | FreezeOf<T> |
Python
call = substrate.compose_call(
'MultiTokens', 'thaw', {
'info': {
'collection_id': 'u128',
'freeze_type': {
'Collection': None,
'CollectionAccount': 'AccountId',
'Token': 'u128',
'TokenAccount': {
'account_id': 'AccountId',
'token_id': 'u128',
},
},
},
}
)
transfer
operator transfers to recipient for collection_id with params
# Errors
- AmountZero if amount == 0.
- InvalidTargetAccount if source == target.
- BalanceLow if source does not own enough amount of collection.
- Overflow if target balance of collection overflows.
Attributes
| Name | Type |
|---|---|
| recipient | <T::Lookup as StaticLookup>::Source |
| collection_id | T::CollectionId |
| params | TransferParamsOf<T> |
Python
call = substrate.compose_call(
'MultiTokens', 'transfer', {
'collection_id': 'u128',
'params': {
'Operator': {
'amount': 'u128',
'keep_alive': 'bool',
'source': 'AccountId',
'token_id': 'u128',
},
'Simple': {
'amount': 'u128',
'keep_alive': 'bool',
'token_id': 'u128',
},
},
'recipient': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
unapprove_collection
Unapprove the operator to manage all of origin's tokens belonging to collection
# Errors
- CollectionAccountNotFound if the collection account cannot be found
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| operator | T::AccountId |
Python
call = substrate.compose_call(
'MultiTokens', 'unapprove_collection', {
'collection_id': 'u128',
'operator': 'AccountId',
}
)
unapprove_token
Unapprove operator to transfer origin's token_id of collection_id
# Errors
- TokenAccountNotFound if the token account does not exist
Attributes
| Name | Type |
|---|---|
| collection_id | T::CollectionId |
| token_id | T::TokenId |
| operator | T::AccountId |
Python
call = substrate.compose_call(
'MultiTokens', 'unapprove_token', {
'collection_id': 'u128',
'operator': 'AccountId',
'token_id': 'u128',
}
)
Events
Approved
An approval took place. If token_id is None, it applies to the whole collection.
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | Option<T::TokenId> |
(None, 'u128') |
| owner | T::AccountId |
AccountId |
| operator | T::AccountId |
AccountId |
| amount | Option<T::TokenBalance> |
(None, 'u128') |
| expiration | T::Expiration |
(None, 'u32') |
AttributeRemoved
An attribute has been removed
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | Option<T::TokenId> |
(None, 'u128') |
| key | T::AttributeKey |
Bytes |
AttributeSet
New attribute has been set
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | Option<T::TokenId> |
(None, 'u128') |
| key | T::AttributeKey |
Bytes |
| value | T::AttributeValue |
Bytes |
BalanceSet
The balance of an account was set
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| account_id | T::AccountId |
AccountId |
| balance | T::TokenBalance |
u128 |
| reserved_balance | T::TokenBalance |
u128 |
Burned
Units of a Token were burned
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| account_id | T::AccountId |
AccountId |
| amount | T::TokenBalance |
u128 |
CollectionAccountCreated
A new CollectionAccount was created
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| account_id | T::AccountId |
AccountId |
CollectionAccountDestroyed
A CollectionAccount was destroyed
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| account_id | T::AccountId |
AccountId |
CollectionAccountUpdated
TokenAccount storage was set to value
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| account_id | T::AccountId |
AccountId |
| value | Option<CollectionAccountOf<T>> |
(None, {'is_frozen': 'bool', 'approvals': 'scale_info::162', 'account_count': 'u32'}) |
CollectionCreated
A new Collection was created
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| owner | T::AccountId |
AccountId |
CollectionDestroyed
A Collection was destroyed.
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| caller | T::AccountId |
AccountId |
CollectionMutated
A Collection was mutated
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| mutation | T::CollectionMutation |
{'owner': (None, 'AccountId'), 'royalty': {'NoMutation': None, 'SomeMutation': (None, {'beneficiary': 'AccountId', 'percentage': 'u32'})}, 'explicit_royalty_currencies': (None, [{'collection_id': 'u128', 'token_id': 'u128'}])} |
CollectionUpdated
Collection storage was set to value
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| value | Option<CollectionOf<T>> |
(None, {'owner': 'AccountId', 'policy': {'mint': {'max_token_count': (None, 'u64'), 'max_token_supply': (None, 'u128'), 'force_single_mint': 'bool'}, 'burn': {}, 'transfer': {'is_frozen': 'bool'}, 'attribute': {}, 'market': {'royalty': (None, 'scale_info::112')}}, 'token_count': 'u64', 'attribute_count': 'u32', 'total_deposit': 'u128', 'explicit_royalty_currencies': 'scale_info::151'}) |
Deposit
Token units were deposited
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| account_id | T::AccountId |
AccountId |
| amount | T::TokenBalance |
u128 |
Frozen
Collection, token or account was frozen
Attributes
| Name | Type | Composition |
|---|---|---|
| None | FreezeOf<T> |
{'collection_id': 'u128', 'freeze_type': {'Collection': None, 'Token': 'u128', 'CollectionAccount': 'AccountId', 'TokenAccount': {'token_id': 'u128', 'account_id': 'AccountId'}}} |
MigrationStatusUpdated
Migration stage updated
Attributes
| Name | Type | Composition |
|---|---|---|
| stage | MigrationStage |
('NotStarted', 'InProgress', 'Completed', 'Failed') |
Minted
Units of a Token were minted
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| issuer | RootOrSigned<T::AccountId> |
{'Root': None, 'Signed': 'AccountId'} |
| recipient | T::AccountId |
AccountId |
| amount | T::TokenBalance |
u128 |
MovedReserves
Reserved token units were moved
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| source | T::AccountId |
AccountId |
| destination | T::AccountId |
AccountId |
| amount | T::TokenBalance |
u128 |
| reserve_id | Option<T::ReserveIdentifierType> |
(None, '[u8; 8]') |
NextCollectionIdUpdated
NextCollectionId storage was set to collection_id
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
ReserveRepatriated
Reserved token units were transferred
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| source | T::AccountId |
AccountId |
| destination | T::AccountId |
AccountId |
| amount | T::TokenBalance |
u128 |
| reserve_id | Option<T::ReserveIdentifierType> |
(None, '[u8; 8]') |
Reserved
Token units were reserved
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| account_id | T::AccountId |
AccountId |
| amount | T::TokenBalance |
u128 |
| reserve_id | Option<T::ReserveIdentifierType> |
(None, '[u8; 8]') |
Slashed
An amount of tokens were slashed from account
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| account_id | T::AccountId |
AccountId |
| amount | T::TokenBalance |
u128 |
Thawed
Collection, token or account was unfrozen
Attributes
| Name | Type | Composition |
|---|---|---|
| None | FreezeOf<T> |
{'collection_id': 'u128', 'freeze_type': {'Collection': None, 'Token': 'u128', 'CollectionAccount': 'AccountId', 'TokenAccount': {'token_id': 'u128', 'account_id': 'AccountId'}}} |
TokenAccountCreated
A new TokenAccount was created
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| account_id | T::AccountId |
AccountId |
| balance | T::TokenBalance |
u128 |
TokenAccountDestroyed
A TokenAccount was destroyed
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| account_id | T::AccountId |
AccountId |
TokenAccountUpdated
TokenAccount storage was set to value
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| account_id | T::AccountId |
AccountId |
| value | Option<TokenAccountOf<T>> |
(None, {'balance': 'u128', 'reserved_balance': 'u128', 'locked_balance': 'u128', 'named_reserves': 'scale_info::171', 'locks': 'scale_info::171', 'approvals': 'scale_info::176', 'is_frozen': 'bool'}) |
TokenCreated
A Token was created
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| issuer | RootOrSigned<T::AccountId> |
{'Root': None, 'Signed': 'AccountId'} |
| initial_supply | T::TokenBalance |
u128 |
TokenDestroyed
A Token was destroyed
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| caller | T::AccountId |
AccountId |
TokenMutated
A Token was mutated
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| mutation | T::TokenMutation |
{'behavior': {'NoMutation': None, 'SomeMutation': (None, {'HasRoyalty': {'beneficiary': 'AccountId', 'percentage': 'u32'}, 'IsCurrency': None})}, 'listing_forbidden': {'NoMutation': None, 'SomeMutation': 'bool'}, 'metadata': {'NoMutation': None, 'SomeMutation': {'Native': None, 'Foreign': {'decimal_count': 'u32', 'name': 'Bytes', 'symbol': 'Bytes', 'location': (None, 'scale_info::66')}}}} |
TokenUpdated
Token storage was set to value
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| value | Option<TokenOf<T>> |
(None, {'supply': 'u128', 'cap': (None, {'SingleMint': None, 'Supply': 'u128'}), 'is_frozen': 'bool', 'minimum_balance': 'u128', 'unit_price': 'u128', 'mint_deposit': 'u128', 'attribute_count': 'u32', 'market_behavior': (None, {'HasRoyalty': {'beneficiary': 'AccountId', 'percentage': 'u32'}, 'IsCurrency': None}), 'listing_forbidden': 'bool', 'metadata': {'Native': None, 'Foreign': {'decimal_count': 'u32', 'name': 'Bytes', 'symbol': 'Bytes', 'location': (None, 'scale_info::66')}}}) |
Transferred
Units of a Token were transferred
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| operator | T::AccountId |
AccountId |
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::TokenBalance |
u128 |
Unapproved
An unapproval took place. If token_id is None, it applies to the collection.
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | Option<T::TokenId> |
(None, 'u128') |
| owner | T::AccountId |
AccountId |
| operator | T::AccountId |
AccountId |
Unreserved
Token units were unreserved
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| account_id | T::AccountId |
AccountId |
| amount | T::TokenBalance |
u128 |
| reserve_id | Option<T::ReserveIdentifierType> |
(None, '[u8; 8]') |
Withdraw
Token units were withdrawn
Attributes
| Name | Type | Composition |
|---|---|---|
| collection_id | T::CollectionId |
u128 |
| token_id | T::TokenId |
u128 |
| account_id | T::AccountId |
AccountId |
| amount | T::TokenBalance |
u128 |
Storage functions
AssetIdsByLocation
Map of Locations to AssetIds of Foreign Tokens
Python
result = substrate.query(
'MultiTokens', 'AssetIdsByLocation', [
{
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'parents': 'u8',
},
]
)
Return value
{'collection_id': 'u128', 'token_id': 'u128'}
Attributes
Metadata of collections and tokens.
Python
result = substrate.query(
'MultiTokens', 'Attributes', ['u128', (None, 'u128'), 'Bytes']
)
Return value
{'deposit': 'u128', 'value': 'Bytes'}
CollectionAccounts
Stores information for an account per collection
Python
result = substrate.query(
'MultiTokens', 'CollectionAccounts', ['u128', 'AccountId']
)
Return value
{'account_count': 'u32', 'approvals': 'scale_info::162', 'is_frozen': 'bool'}
Collections
The collections in existence and their ownership details.
Python
result = substrate.query(
'MultiTokens', 'Collections', ['u128']
)
Return value
{
'attribute_count': 'u32',
'explicit_royalty_currencies': 'scale_info::151',
'owner': 'AccountId',
'policy': {
'attribute': {},
'burn': {},
'market': {
'royalty': (
None,
{'beneficiary': 'AccountId', 'percentage': 'u32'},
),
},
'mint': {
'force_single_mint': 'bool',
'max_token_count': (None, 'u64'),
'max_token_supply': (None, 'u128'),
},
'transfer': {'is_frozen': 'bool'},
},
'token_count': 'u64',
'total_deposit': 'u128',
}
IdleOperations
Pending operations to be executed on Hooks::on_idle.
Python
result = substrate.query(
'MultiTokens', 'IdleOperations', []
)
Return value
[
{
'estimated_weight': {'proof_size': 'u64', 'ref_time': 'u64'},
'operation': {
'DeleteAttributes': {
'attribute_count': 'u32',
'collection_id': 'u128',
'token_id': (None, 'u128'),
},
},
},
]
LastIteratedMigrationKey
Stores last iterated key for migrations. Used by multi block migrations
Python
result = substrate.query(
'MultiTokens', 'LastIteratedMigrationKey', []
)
Return value
'Bytes'
MigrationStatus
Status of the current multi-block migration
Python
result = substrate.query(
'MultiTokens', 'MigrationStatus', []
)
Return value
('NotStarted', 'InProgress', 'Completed', 'Failed')
NextCollectionId
Sequencer for collectionID generators.
Python
result = substrate.query(
'MultiTokens', 'NextCollectionId', []
)
Return value
'u128'
TokenAccounts
Accounts per token
Python
result = substrate.query(
'MultiTokens', 'TokenAccounts', ['AccountId', 'u128', 'u128']
)
Return value
{
'approvals': 'scale_info::176',
'balance': 'u128',
'is_frozen': 'bool',
'locked_balance': 'u128',
'locks': 'scale_info::171',
'named_reserves': 'scale_info::171',
'reserved_balance': 'u128',
}
Tokens
Tokens storage
Python
result = substrate.query(
'MultiTokens', 'Tokens', ['u128', 'u128']
)
Return value
{
'attribute_count': 'u32',
'cap': (None, {'SingleMint': None, 'Supply': 'u128'}),
'is_frozen': 'bool',
'listing_forbidden': 'bool',
'market_behavior': (
None,
{'HasRoyalty': {'beneficiary': 'AccountId', 'percentage': 'u32'}, 'IsCurrency': None},
),
'metadata': {
'Foreign': {
'decimal_count': 'u32',
'location': (None, {'interior': 'scale_info::67', 'parents': 'u8'}),
'name': 'Bytes',
'symbol': 'Bytes',
},
'Native': None,
},
'minimum_balance': 'u128',
'mint_deposit': 'u128',
'supply': 'u128',
'unit_price': 'u128',
}
Constants
AttributeDepositBase
The base deposit required for setting an attribute
Value
200000000000000000
Python
constant = substrate.get_constant('MultiTokens', 'AttributeDepositBase')
AttributeDepositPerByte
Additional deposit per byte for setting an attribute
Value
100000000000000
Python
constant = substrate.get_constant('MultiTokens', 'AttributeDepositPerByte')
CollectionCreationDeposit
Amount of Currency reserved to create a collection
Value
25000000000000000000
Python
constant = substrate.get_constant('MultiTokens', 'CollectionCreationDeposit')
MaxBatchAttributesPerCall
The max number of attributes to set in one call
Value
50
Python
constant = substrate.get_constant('MultiTokens', 'MaxBatchAttributesPerCall')
MaxExplicitRoyaltyCurrencies
The maximum number of explicit royalty currencies
Value
10
Python
constant = substrate.get_constant('MultiTokens', 'MaxExplicitRoyaltyCurrencies')
MaxIdleOperationQueueLength
The maximum length of the idle operation queue
Value
1000
Python
constant = substrate.get_constant('MultiTokens', 'MaxIdleOperationQueueLength')
MaxIdleOperationQueueWeight
The maximum weight of the idle operation queue
Value
{'proof_size': 0, 'ref_time': 100000000000}
Python
constant = substrate.get_constant('MultiTokens', 'MaxIdleOperationQueueWeight')
MaxLocks
The maximum number of locks that can exist on a token account
Value
50
Python
constant = substrate.get_constant('MultiTokens', 'MaxLocks')
MaxMigrationKeyLength
Max length for the LastIteratedMigrationKey storage
Value
1024
Python
constant = substrate.get_constant('MultiTokens', 'MaxMigrationKeyLength')
MaxOperatorsPerAccount
The max number of operators a TokenAccount and an CollectionAccount can have
Value
10
Python
constant = substrate.get_constant('MultiTokens', 'MaxOperatorsPerAccount')
MaxRecipientsPerBatchMint
The max number of recipients allowed in a batch mint
Value
250
Python
constant = substrate.get_constant('MultiTokens', 'MaxRecipientsPerBatchMint')
MaxRecipientsPerBatchTransfer
The max number of recipients allowed in a batch transfer
Value
250
Python
constant = substrate.get_constant('MultiTokens', 'MaxRecipientsPerBatchTransfer')
MaxReserves
The maximum number of named reserves that can exist on an account
Value
50
Python
constant = substrate.get_constant('MultiTokens', 'MaxReserves')
MaxTokensPerBatchTransfer
The max number of tokens allowed in a batch transfer
Value
500
Python
constant = substrate.get_constant('MultiTokens', 'MaxTokensPerBatchTransfer')
MigrationWeightLimitPercentage
Percentage of block weight to consume during migration
Value
100000000
Python
constant = substrate.get_constant('MultiTokens', 'MigrationWeightLimitPercentage')
NativeAssetId
The AssetId that represents the native asset
Value
{'collection_id': 0, 'token_id': 0}
Python
constant = substrate.get_constant('MultiTokens', 'NativeAssetId')
ReserveIdentifier
The id used for making reservations with this pallet
Value
'0x6d756c746f6b656e'
Python
constant = substrate.get_constant('MultiTokens', 'ReserveIdentifier')
TokenAccountDeposit
The amount of Currency that must be reserved for a token account to be maintained
Value
10000000000000000
Python
constant = substrate.get_constant('MultiTokens', 'TokenAccountDeposit')
TokenMetadataMaxNameLength
Max length of name stored in TokenMetadata
Value
32
Python
constant = substrate.get_constant('MultiTokens', 'TokenMetadataMaxNameLength')
TokenMetadataMaxSymbolLength
Max length of symbol stored in TokenMetadata
Value
8
Python
constant = substrate.get_constant('MultiTokens', 'TokenMetadataMaxSymbolLength')
Errors
AlreadyExpired
Tried to set an expiration that has already passed
AmountZero
An amount of zero was used when it's not allowed
BalanceBelowMinimumRequirement
The balance is below the minimum required balance
BalanceLow
Not enough balance to perform the operation.
CannotApproveSelf
An account cannot approve itself as an operator
CannotTransferToSelf
An account cannot transfer tokens to itself
CollectionAccountNotFound
CollectionAccount was not found
CollectionAlreadyApproved
The collection is already approved for all, so it is useless to approve for a single token
CollectionIdAlreadyInUse
Collection ID is already in use
CollectionNotFound
Collection was not found
ConflictingLocation
Conflicting MultiLocation for an AssetId
CurrencyIncompatibleWithCollectionRoyalty
Token cannot act as a Currency and also a Royalty
DepositReserveFailed
Unable to reserve the amount to create a new collection/token
DepositUnreserveFailed
Unable to unreserve the amount to burn an existing collection/token
DestroyForbiddenByAttributeCount
The collection cannot be destroyed because it has attributes
DestroyForbiddenByCollectionEvent
The OnCollectionEvent trait has forbidden burning of the collection
DestroyForbiddenByRemainingTokens
Destroy is not allowed on collections that have tokens. Destroy all tokens before
calling destroy_collection. Keep in mind that the Token storage can remain even if
all Token units were burned. A Token can only be destroyed by setting
remove_token_storage to true in burn.
ExistentialDepositCannotBeZero
Foreign Tokens must have an existential deposit greater than zero
Frozen
The operation failed due to an item being frozen
IdleOperationQueueFull
The idle operation queue is full and cannot accept new operations
InsufficientAllowance
Not enough allowance to perform the operation
InvalidAttributeCount
Provided attribute count doesnt match the count is storage
InvalidAttributeKey
Attribute key invalid
InvalidExplicitRoyaltyCurrencies
One or more of the explicit royalty currencies are invalid
InvalidUnitPrice
The unit price cannot be zero, cannot decrease, and unit_price * total_supply must
be greater than TokenAccountDeposit
LiquidityRestrictions
The balance is locked or restricted
MaxApprovalsExceeded
The max number of approvals for this account was exceeded
MaxTokenCountExceeded
Tried to mint more tokens than allowed
MintFailedRequirements
The minting did not meet the requirements set by the MintPolicy
NoPermission
Caller is not allowed to execute this extrinsic
OperationNotAllowedForNativeToken
This operation is not allowed for the native token
PercentageOutOfBounds
Royalty percentage is above or below allowed bounds
ReservesLow
Reserved balance is not enough to perform the operation
TokenAccountNotFound
TokenAccount was not found
TokenAlreadyExists
Tried to create Token that already exists
TokenMintCapExceeded
The cap for the token was exceeded during mint
TokenNotFound
Token was not found
TooManyLocks
Max named locks for an account are exceeded
TooManyReserves
Max named reserves for an account are exceeded
TransferParamCreationFailed
Transfer params could not be created
WrongCurrentApprovedAmount
The passed current_amount does not match the actual current amount of the approval
Multisig
Calls
approve_as_multi
Register approval for a dispatch to be made from a deterministic composite account if
approved by a total of threshold - 1 of other_signatories.
Payment: DepositBase will be reserved if this is the first approval, plus
threshold times DepositFactor. It is returned once this dispatch happens or
is cancelled.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.maybe_timepoint: If this is the first approval, then this must beNone. If it is not the first approval, then it must beSome, with the timepoint (block number and transaction index) of the first approval transaction.call_hash: The hash of the call to be executed.
NOTE: If this is the final approval, you will want to use as_multi instead.
# <weight>
- O(S).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One encode & hash, both of complexity O(S).
- Up to one binary search and insert (O(logS + S)).
- I/O: 1 read O(S), up to 1 mutate O(S). Up to one remove.
- One event.
- Storage: inserts one item, value size bounded by MaxSignatories, with a deposit
taken for its lifetime of DepositBase + threshold * DepositFactor.
- DB Weight:
- Read: Multisig Storage, [Caller Account]
- Write: Multisig Storage, [Caller Account] # </weight>
Attributes
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| maybe_timepoint | Option<Timepoint<T::BlockNumber>> |
| call_hash | [u8; 32] |
| max_weight | Weight |
Python
call = substrate.compose_call(
'Multisig', 'approve_as_multi', {
'call_hash': '[u8; 32]',
'max_weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
'maybe_timepoint': (
None,
{
'height': 'u32',
'index': 'u32',
},
),
'other_signatories': ['AccountId'],
'threshold': 'u16',
}
)
as_multi
Register approval for a dispatch to be made from a deterministic composite account if
approved by a total of threshold - 1 of other_signatories.
If there are enough, then dispatch the call.
Payment: DepositBase will be reserved if this is the first approval, plus
threshold times DepositFactor. It is returned once this dispatch happens or
is cancelled.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.maybe_timepoint: If this is the first approval, then this must beNone. If it is not the first approval, then it must beSome, with the timepoint (block number and transaction index) of the first approval transaction.call: The call to be executed.
NOTE: Unless this is the final approval, you will generally want to use
approve_as_multi instead, since it only requires a hash of the call.
Result is equivalent to the dispatched result if threshold is exactly 1. Otherwise
on success, result is Ok and the result from the interior call, if it was executed,
may be found in the deposited MultisigExecuted event.
# <weight>
- O(S + Z + Call).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One call encode & hash, both of complexity O(Z) where Z is tx-len.
- One encode & hash, both of complexity O(S).
- Up to one binary search and insert (O(logS + S)).
- I/O: 1 read O(S), up to 1 mutate O(S). Up to one remove.
- One event.
- The weight of the call.
- Storage: inserts one item, value size bounded by MaxSignatories, with a deposit
taken for its lifetime of DepositBase + threshold * DepositFactor.
- DB Weight:
- Reads: Multisig Storage, [Caller Account]
- Writes: Multisig Storage, [Caller Account]
- Plus Call Weight # </weight>
Attributes
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| maybe_timepoint | Option<Timepoint<T::BlockNumber>> |
| call | Box<<T as Config>::RuntimeCall> |
| max_weight | Weight |
Python
call = substrate.compose_call(
'Multisig', 'as_multi', {
'call': 'Call',
'max_weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
'maybe_timepoint': (
None,
{
'height': 'u32',
'index': 'u32',
},
),
'other_signatories': ['AccountId'],
'threshold': 'u16',
}
)
as_multi_threshold_1
Immediately dispatch a multi-signature call using a single approval from the caller.
The dispatch origin for this call must be Signed.
other_signatories: The accounts (other than the sender) who are part of the multi-signature, but do not participate in the approval process.call: The call to be executed.
Result is equivalent to the dispatched result.
# <weight> O(Z + C) where Z is the length of the call and C its execution weight.
- DB Weight: None
- Plus Call Weight # </weight>
Attributes
| Name | Type |
|---|---|
| other_signatories | Vec<T::AccountId> |
| call | Box<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Multisig', 'as_multi_threshold_1', {
'call': 'Call',
'other_signatories': ['AccountId'],
}
)
cancel_as_multi
Cancel a pre-existing, on-going multisig transaction. Any deposit reserved previously for this operation will be unreserved on success.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.timepoint: The timepoint (block number and transaction index) of the first approval transaction for this dispatch.call_hash: The hash of the call to be executed.
# <weight>
- O(S).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One encode & hash, both of complexity O(S).
- One event.
- I/O: 1 read O(S), one remove.
- Storage: removes one item.
- DB Weight:
- Read: Multisig Storage, [Caller Account], Refund Account
- Write: Multisig Storage, [Caller Account], Refund Account # </weight>
Attributes
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| timepoint | Timepoint<T::BlockNumber> |
| call_hash | [u8; 32] |
Python
call = substrate.compose_call(
'Multisig', 'cancel_as_multi', {
'call_hash': '[u8; 32]',
'other_signatories': ['AccountId'],
'threshold': 'u16',
'timepoint': {
'height': 'u32',
'index': 'u32',
},
}
)
Events
MultisigApproval
A multisig operation has been approved by someone.
Attributes
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
MultisigCancelled
A multisig operation has been cancelled.
Attributes
| Name | Type | Composition |
|---|---|---|
| cancelling | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
MultisigExecuted
A multisig operation has been executed.
Attributes
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
NewMultisig
A new multisig operation has begun.
Attributes
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
Storage functions
Multisigs
The set of open multisig operations.
Python
result = substrate.query(
'Multisig', 'Multisigs', ['AccountId', '[u8; 32]']
)
Return value
{
'approvals': ['AccountId'],
'deposit': 'u128',
'depositor': 'AccountId',
'when': {'height': 'u32', 'index': 'u32'},
}
Constants
DepositBase
The base amount of currency needed to reserve for creating a multisig execution or to store a dispatch call for later.
This is held for an additional storage item whose value size is
4 + sizeof((BlockNumber, Balance, AccountId)) bytes and whose key size is
32 + sizeof(AccountId) bytes.
Value
2008800000000000000
Python
constant = substrate.get_constant('Multisig', 'DepositBase')
DepositFactor
The amount of currency needed per unit threshold when creating a multisig execution.
This is held for adding 32 bytes more into a pre-existing storage value.
Value
3200000000000000
Python
constant = substrate.get_constant('Multisig', 'DepositFactor')
MaxSignatories
The maximum amount of signatories allowed in the multisig.
Value
100
Python
constant = substrate.get_constant('Multisig', 'MaxSignatories')
Errors
AlreadyApproved
Call is already approved by this signatory.
AlreadyStored
The data to be stored is already stored.
MaxWeightTooLow
The maximum weight information provided was too low.
MinimumThreshold
Threshold must be 2 or greater.
NoApprovalsNeeded
Call doesn't need any (more) approvals.
NoTimepoint
No timepoint was given, yet the multisig operation is already underway.
NotFound
Multisig operation not found when attempting to cancel.
NotOwner
Only the account that originally created the multisig is able to cancel it.
SenderInSignatories
The sender was contained in the other signatories; it shouldn't be.
SignatoriesOutOfOrder
The signatories were provided out of order; they should be ordered.
TooFewSignatories
There are too few signatories in the list.
TooManySignatories
There are too many signatories in the list.
UnexpectedTimepoint
A timepoint was given, yet no multisig operation is underway.
WrongTimepoint
A different timepoint was given to the multisig operation that is underway.
OrmlXcm
Calls
send_as_sovereign
Send an XCM message as parachain sovereign.
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| message | Box<VersionedXcm<()>> |
Python
call = substrate.compose_call(
'OrmlXcm', 'send_as_sovereign', {
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::98',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::100',
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
},
'TeleportAsset': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::98',
],
'dest': {
'Null': None,
'X1': 'scale_info::100',
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': {
'Null': None,
'X1': 'scale_info::100',
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'effects': [
'scale_info::321',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::319',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::319',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::319',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::319',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::80',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::324',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::80',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::80',
],
'effects': [
'scale_info::326',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::68',
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::80',
],
'effects': [
'scale_info::326',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::80',
],
'beneficiary': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::80',
],
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'effects': [
'scale_info::326',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::80',
],
'effects': [
'scale_info::326',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::324',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::324',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::324',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::80',
],
'ticket': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'beneficiary': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::77',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'receive': [
'scale_info::80',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'reserve': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'xcm': [
'scale_info::77',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'xcm': [
'scale_info::77',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::80',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::62',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::80',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::80',
],
'SetAppendix': [
'scale_info::77',
],
'SetErrorHandler': [
'scale_info::77',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::80',
],
'beneficiary': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::80',
],
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'xcm': [
'scale_info::77',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::80',
],
},
],
},
}
)
Events
Sent
XCM message sent. [to, message]
Attributes
| Name | Type | Composition |
|---|---|---|
| to | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| message | Xcm<()> |
[{'WithdrawAsset': ['scale_info::80'], 'ReserveAssetDeposited': ['scale_info::80'], 'ReceiveTeleportedAsset': ['scale_info::80'], 'QueryResponse': {'query_id': 'u64', 'response': {'Null': None, 'Assets': ['scale_info::80'], 'ExecutionResult': (None, ('u32', 'scale_info::62')), 'Version': 'u32'}, 'max_weight': 'u64'}, 'TransferAsset': {'assets': ['scale_info::80'], 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::67'}}, 'TransferReserveAsset': {'assets': ['scale_info::80'], 'dest': {'parents': 'u8', 'interior': 'scale_info::67'}, 'xcm': ['scale_info::77']}, 'Transact': {'origin_type': ('Native', 'SovereignAccount', 'Superuser', 'Xcm'), 'require_weight_at_most': 'u64', 'call': {'encoded': 'Bytes'}}, 'HrmpNewChannelOpenRequest': {'sender': 'u32', 'max_message_size': 'u32', 'max_capacity': 'u32'}, 'HrmpChannelAccepted': {'recipient': 'u32'}, 'HrmpChannelClosing': {'initiator': 'u32', 'sender': 'u32', 'recipient': 'u32'}, 'ClearOrigin': None, 'DescendOrigin': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::68', 'scale_info::68'), 'X3': ('scale_info::68', 'scale_info::68', 'scale_info::68'), 'X4': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X5': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X6': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X7': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X8': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68')}, 'ReportError': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::67'}, 'max_response_weight': 'u64'}, 'DepositAsset': {'assets': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'max_assets': 'u32', 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::67'}}, 'DepositReserveAsset': {'assets': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'max_assets': 'u32', 'dest': {'parents': 'u8', 'interior': 'scale_info::67'}, 'xcm': ['scale_info::77']}, 'ExchangeAsset': {'give': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'receive': ['scale_info::80']}, 'InitiateReserveWithdraw': {'assets': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'reserve': {'parents': 'u8', 'interior': 'scale_info::67'}, 'xcm': ['scale_info::77']}, 'InitiateTeleport': {'assets': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'dest': {'parents': 'u8', 'interior': 'scale_info::67'}, 'xcm': ['scale_info::77']}, 'QueryHolding': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::67'}, 'assets': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'max_response_weight': 'u64'}, 'BuyExecution': {'fees': {'id': 'scale_info::81', 'fun': 'scale_info::82'}, 'weight_limit': {'Unlimited': None, 'Limited': 'u64'}}, 'RefundSurplus': None, 'SetErrorHandler': ['scale_info::77'], 'SetAppendix': ['scale_info::77'], 'ClearError': None, 'ClaimAsset': {'assets': ['scale_info::80'], 'ticket': {'parents': 'u8', 'interior': 'scale_info::67'}}, 'Trap': 'u64', 'SubscribeVersion': {'query_id': 'u64', 'max_response_weight': 'u64'}, 'UnsubscribeVersion': None}] |
Errors
BadVersion
The version of the Versioned value used is not able to be
interpreted.
SendFailure
The message and destination was recognized as being reachable but the operation could not be completed.
Unreachable
The message and destination combination was not recognized as being reachable.
ParachainInfo
Storage functions
ParachainId
Python
result = substrate.query(
'ParachainInfo', 'ParachainId', []
)
Return value
'u32'
ParachainSystem
Calls
authorize_upgrade
Attributes
| Name | Type |
|---|---|
| code_hash | T::Hash |
Python
call = substrate.compose_call(
'ParachainSystem', 'authorize_upgrade', {'code_hash': '[u8; 32]'}
)
enact_authorized_upgrade
Attributes
| Name | Type |
|---|---|
| code | Vec<u8> |
Python
call = substrate.compose_call(
'ParachainSystem', 'enact_authorized_upgrade', {'code': 'Bytes'}
)
set_validation_data
Set the current validation data.
This should be invoked exactly once per block. It will panic at the finalization phase if the call was not invoked.
The dispatch origin for this call must be Inherent
As a side effect, this function upgrades the current validation function if the appropriate time has come.
Attributes
| Name | Type |
|---|---|
| data | ParachainInherentData |
Python
call = substrate.compose_call(
'ParachainSystem', 'set_validation_data', {
'data': {
'downward_messages': [
{
'msg': 'Bytes',
'sent_at': 'u32',
},
],
'horizontal_messages': 'scale_info::265',
'relay_chain_state': {
'trie_nodes': 'scale_info::249',
},
'validation_data': {
'max_pov_size': 'u32',
'parent_head': 'Bytes',
'relay_parent_number': 'u32',
'relay_parent_storage_root': '[u8; 32]',
},
},
}
)
sudo_send_upward_message
Attributes
| Name | Type |
|---|---|
| message | UpwardMessage |
Python
call = substrate.compose_call(
'ParachainSystem', 'sudo_send_upward_message', {'message': 'Bytes'}
)
Events
DownwardMessagesProcessed
Downward messages were processed using the given weight.
Attributes
| Name | Type | Composition |
|---|---|---|
| weight_used | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
| dmq_head | relay_chain::Hash |
[u8; 32] |
DownwardMessagesReceived
Some downward messages have been received and will be processed.
Attributes
| Name | Type | Composition |
|---|---|---|
| count | u32 |
u32 |
UpgradeAuthorized
An upgrade has been authorized.
Attributes
| Name | Type | Composition |
|---|---|---|
| code_hash | T::Hash |
[u8; 32] |
ValidationFunctionApplied
The validation function was applied as of the contained relay chain block number.
Attributes
| Name | Type | Composition |
|---|---|---|
| relay_chain_block_num | RelayChainBlockNumber |
u32 |
ValidationFunctionDiscarded
The relay-chain aborted the upgrade process.
Attributes
No attributes
ValidationFunctionStored
The validation function has been scheduled to apply.
Attributes
No attributes
Storage functions
AnnouncedHrmpMessagesPerCandidate
The number of HRMP messages we observed in on_initialize and thus used that number for
announcing the weight of on_initialize and on_finalize.
Python
result = substrate.query(
'ParachainSystem', 'AnnouncedHrmpMessagesPerCandidate', []
)
Return value
'u32'
AuthorizedUpgrade
The next authorized upgrade, if there is one.
Python
result = substrate.query(
'ParachainSystem', 'AuthorizedUpgrade', []
)
Return value
'[u8; 32]'
CustomValidationHeadData
A custom head data that should be returned as result of validate_block.
See [Pallet::set_custom_validation_head_data] for more information.
Python
result = substrate.query(
'ParachainSystem', 'CustomValidationHeadData', []
)
Return value
'Bytes'
DidSetValidationCode
Were the validation data set to notify the relay chain?
Python
result = substrate.query(
'ParachainSystem', 'DidSetValidationCode', []
)
Return value
'bool'
HostConfiguration
The parachain host configuration that was obtained from the relay parent.
This field is meant to be updated each block with the validation data inherent. Therefore,
before processing of the inherent, e.g. in on_initialize this data may be stale.
This data is also absent from the genesis.
Python
result = substrate.query(
'ParachainSystem', 'HostConfiguration', []
)
Return value
{
'hrmp_max_message_num_per_candidate': 'u32',
'max_code_size': 'u32',
'max_head_data_size': 'u32',
'max_upward_message_num_per_candidate': 'u32',
'max_upward_message_size': 'u32',
'max_upward_queue_count': 'u32',
'max_upward_queue_size': 'u32',
'validation_upgrade_cooldown': 'u32',
'validation_upgrade_delay': 'u32',
}
HrmpOutboundMessages
HRMP messages that were sent in a block.
This will be cleared in on_initialize of each new block.
Python
result = substrate.query(
'ParachainSystem', 'HrmpOutboundMessages', []
)
Return value
[{'data': 'Bytes', 'recipient': 'u32'}]
HrmpWatermark
HRMP watermark that was set in a block.
This will be cleared in on_initialize of each new block.
Python
result = substrate.query(
'ParachainSystem', 'HrmpWatermark', []
)
Return value
'u32'
LastDmqMqcHead
The last downward message queue chain head we have observed.
This value is loaded before and saved after processing inbound downward messages carried by the system inherent.
Python
result = substrate.query(
'ParachainSystem', 'LastDmqMqcHead', []
)
Return value
'[u8; 32]'
LastHrmpMqcHeads
The message queue chain heads we have observed per each channel incoming channel.
This value is loaded before and saved after processing inbound downward messages carried by the system inherent.
Python
result = substrate.query(
'ParachainSystem', 'LastHrmpMqcHeads', []
)
Return value
'scale_info::256'
LastRelayChainBlockNumber
The relay chain block number associated with the last parachain block.
Python
result = substrate.query(
'ParachainSystem', 'LastRelayChainBlockNumber', []
)
Return value
'u32'
NewValidationCode
Validation code that is set by the parachain and is to be communicated to collator and consequently the relay-chain.
This will be cleared in on_initialize of each new block if no other pallet already set
the value.
Python
result = substrate.query(
'ParachainSystem', 'NewValidationCode', []
)
Return value
'Bytes'
PendingUpwardMessages
Upward messages that are still pending and not yet send to the relay chain.
Python
result = substrate.query(
'ParachainSystem', 'PendingUpwardMessages', []
)
Return value
['Bytes']
PendingValidationCode
In case of a scheduled upgrade, this storage field contains the validation code to be applied.
As soon as the relay chain gives us the go-ahead signal, we will overwrite the :code
which will result the next block process with the new validation code. This concludes the upgrade process.
Python
result = substrate.query(
'ParachainSystem', 'PendingValidationCode', []
)
Return value
'Bytes'
ProcessedDownwardMessages
Number of downward messages processed in a block.
This will be cleared in on_initialize of each new block.
Python
result = substrate.query(
'ParachainSystem', 'ProcessedDownwardMessages', []
)
Return value
'u32'
RelayStateProof
The state proof for the last relay parent block.
This field is meant to be updated each block with the validation data inherent. Therefore,
before processing of the inherent, e.g. in on_initialize this data may be stale.
This data is also absent from the genesis.
Python
result = substrate.query(
'ParachainSystem', 'RelayStateProof', []
)
Return value
{'trie_nodes': 'scale_info::249'}
RelevantMessagingState
The snapshot of some state related to messaging relevant to the current parachain as per the relay parent.
This field is meant to be updated each block with the validation data inherent. Therefore,
before processing of the inherent, e.g. in on_initialize this data may be stale.
This data is also absent from the genesis.
Python
result = substrate.query(
'ParachainSystem', 'RelevantMessagingState', []
)
Return value
{
'dmq_mqc_head': '[u8; 32]',
'egress_channels': [
(
'u32',
{
'max_capacity': 'u32',
'max_message_size': 'u32',
'max_total_size': 'u32',
'mqc_head': (None, '[u8; 32]'),
'msg_count': 'u32',
'total_size': 'u32',
},
),
],
'ingress_channels': [
(
'u32',
{
'max_capacity': 'u32',
'max_message_size': 'u32',
'max_total_size': 'u32',
'mqc_head': (None, '[u8; 32]'),
'msg_count': 'u32',
'total_size': 'u32',
},
),
],
'relay_dispatch_queue_size': ('u32', 'u32'),
}
ReservedDmpWeightOverride
The weight we reserve at the beginning of the block for processing DMP messages. This overrides the amount set in the Config trait.
Python
result = substrate.query(
'ParachainSystem', 'ReservedDmpWeightOverride', []
)
Return value
{'proof_size': 'u64', 'ref_time': 'u64'}
ReservedXcmpWeightOverride
The weight we reserve at the beginning of the block for processing XCMP messages. This overrides the amount set in the Config trait.
Python
result = substrate.query(
'ParachainSystem', 'ReservedXcmpWeightOverride', []
)
Return value
{'proof_size': 'u64', 'ref_time': 'u64'}
UpgradeRestrictionSignal
An option which indicates if the relay-chain restricts signalling a validation code upgrade.
In other words, if this is Some and [NewValidationCode] is Some then the produced
candidate will be invalid.
This storage item is a mirror of the corresponding value for the current parachain from the relay-chain. This value is ephemeral which means it doesn't hit the storage. This value is set after the inherent.
Python
result = substrate.query(
'ParachainSystem', 'UpgradeRestrictionSignal', []
)
Return value
(None, ('Present', ))
UpwardMessages
Upward messages that were sent in a block.
This will be cleared in on_initialize of each new block.
Python
result = substrate.query(
'ParachainSystem', 'UpwardMessages', []
)
Return value
['Bytes']
ValidationData
The [PersistedValidationData] set for this block.
This value is expected to be set only once per block and it's never stored
in the trie.
Python
result = substrate.query(
'ParachainSystem', 'ValidationData', []
)
Return value
{
'max_pov_size': 'u32',
'parent_head': 'Bytes',
'relay_parent_number': 'u32',
'relay_parent_storage_root': '[u8; 32]',
}
Errors
HostConfigurationNotAvailable
The inherent which supplies the host configuration did not run this block
NotScheduled
No validation function upgrade is currently scheduled.
NothingAuthorized
No code upgrade has been authorized.
OverlappingUpgrades
Attempt to upgrade validation function while existing upgrade pending
ProhibitedByPolkadot
Polkadot currently prohibits this parachain from upgrading its validation function
TooBig
The supplied validation function has compiled into a blob larger than Polkadot is willing to run
Unauthorized
The given code upgrade has not been authorized.
ValidationDataNotAvailable
The inherent which supplies the validation data did not run this block
PolkadotXcm
Calls
execute
Execute an XCM message from a local, signed, origin.
An event is deposited indicating whether msg could be executed completely or only
partially.
No more than max_weight will be used in its attempted execution. If this is less than the
maximum amount of weight that the message could take to be executed, then no execution
attempt will be made.
NOTE: A successful return to this does not imply that the msg was executed successfully
to completion; only that some of it was executed.
Attributes
| Name | Type |
|---|---|
| message | Box<VersionedXcm<<T as SysConfig>::RuntimeCall>> |
| max_weight | XcmWeight |
Python
call = substrate.compose_call(
'PolkadotXcm', 'execute', {
'max_weight': 'u64',
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::98',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::100',
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::332',
],
},
'TeleportAsset': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::332',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::98',
],
'dest': {
'Null': None,
'X1': 'scale_info::100',
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': {
'Null': None,
'X1': 'scale_info::100',
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'effects': [
'scale_info::321',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::332',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::330',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::330',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::319',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::330',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::80',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::335',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::80',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::80',
],
'effects': [
'scale_info::337',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::68',
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::80',
],
'effects': [
'scale_info::337',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::80',
],
'beneficiary': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::80',
],
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'effects': [
'scale_info::326',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::80',
],
'effects': [
'scale_info::337',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::335',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::324',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::335',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::80',
],
'ticket': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'beneficiary': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::77',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'receive': [
'scale_info::80',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'reserve': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'xcm': [
'scale_info::77',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'xcm': [
'scale_info::77',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::80',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::62',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::80',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::80',
],
'SetAppendix': [
'scale_info::341',
],
'SetErrorHandler': [
'scale_info::341',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::80',
],
'beneficiary': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::80',
],
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'xcm': [
'scale_info::77',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::80',
],
},
],
},
}
)
force_default_xcm_version
Set a safe XCM version (the version that XCM should be encoded with if the most recent version a destination can accept is unknown).
origin: Must be Root.maybe_xcm_version: The default XCM encoding version, orNoneto disable.
Attributes
| Name | Type |
|---|---|
| maybe_xcm_version | Option<XcmVersion> |
Python
call = substrate.compose_call(
'PolkadotXcm', 'force_default_xcm_version', {'maybe_xcm_version': (None, 'u32')}
)
force_subscribe_version_notify
Ask a location to notify us regarding their XCM version and any changes to it.
origin: Must be Root.location: The location to which we should subscribe for XCM version notifications.
Attributes
| Name | Type |
|---|---|
| location | Box<VersionedMultiLocation> |
Python
call = substrate.compose_call(
'PolkadotXcm', 'force_subscribe_version_notify', {
'location': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
}
)
force_unsubscribe_version_notify
Require that a particular destination should no longer notify us regarding any XCM version changes.
origin: Must be Root.location: The location to which we are currently subscribed for XCM version notifications which we no longer desire.
Attributes
| Name | Type |
|---|---|
| location | Box<VersionedMultiLocation> |
Python
call = substrate.compose_call(
'PolkadotXcm', 'force_unsubscribe_version_notify', {
'location': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
}
)
force_xcm_version
Extoll that a particular destination can be communicated with through a particular version of XCM.
origin: Must be Root.location: The destination that is being described.xcm_version: The latest version of XCM thatlocationsupports.
Attributes
| Name | Type |
|---|---|
| location | Box<MultiLocation> |
| xcm_version | XcmVersion |
Python
call = substrate.compose_call(
'PolkadotXcm', 'force_xcm_version', {
'location': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'parents': 'u8',
},
'xcm_version': 'u32',
}
)
limited_reserve_transfer_assets
Transfer some assets from the local chain to the sovereign account of a destination chain and forward a notification XCM.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item, up to enough to pay for weight_limit of weight. If more weight
is needed than weight_limit, then the operation will fail and the assets send may be
at risk.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedestside.fee_asset_item: The index intoassetsof the item which should be used to pay fees.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
| weight_limit | WeightLimit |
Python
call = substrate.compose_call(
'PolkadotXcm', 'limited_reserve_transfer_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
limited_teleport_assets
Teleport some assets from the local chain to some destination chain.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item, up to enough to pay for weight_limit of weight. If more weight
is needed than weight_limit, then the operation will fail and the assets send may be
at risk.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. The first item should be the currency used to to pay the fee on thedestside. May not be empty.fee_asset_item: The index intoassetsof the item which should be used to pay fees.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
| weight_limit | WeightLimit |
Python
call = substrate.compose_call(
'PolkadotXcm', 'limited_teleport_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
reserve_transfer_assets
Transfer some assets from the local chain to the sovereign account of a destination chain and forward a notification XCM.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item. The weight limit for fees is not provided and thus is unlimited,
with all fees taken as needed from the asset.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedestside.fee_asset_item: The index intoassetsof the item which should be used to pay fees.
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
Python
call = substrate.compose_call(
'PolkadotXcm', 'reserve_transfer_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
}
)
send
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| message | Box<VersionedXcm<()>> |
Python
call = substrate.compose_call(
'PolkadotXcm', 'send', {
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::98',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::100',
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
},
'TeleportAsset': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::98',
],
'dest': {
'Null': None,
'X1': 'scale_info::100',
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': {
'Null': None,
'X1': 'scale_info::100',
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'effects': [
'scale_info::321',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::319',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::319',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::319',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::83',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::99',
},
'AllConcreteNonFungible': {
'class': 'scale_info::99',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::99',
},
'ConcreteNonFungible': {
'class': 'scale_info::99',
'instance': 'scale_info::83',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::98',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::319',
],
},
'DepositAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
},
'DepositReserveAsset': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'ExchangeAsset': {
'give': [
'scale_info::98',
],
'receive': [
'scale_info::98',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::98',
],
'effects': [
'scale_info::321',
],
'reserve': 'scale_info::99',
},
'InitiateTeleport': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'effects': [
'scale_info::321',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::98',
],
'dest': 'scale_info::99',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::80',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::324',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::80',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::80',
],
'effects': [
'scale_info::326',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::68',
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::80',
],
'effects': [
'scale_info::326',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::80',
],
'beneficiary': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::80',
],
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'effects': [
'scale_info::326',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::80',
],
'effects': [
'scale_info::326',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::324',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::324',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::80',
'halt_on_error': 'bool',
'instructions': [
'scale_info::324',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::91',
'beneficiary': 'scale_info::66',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::91',
'receive': [
'scale_info::80',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::91',
'effects': [
'scale_info::326',
],
'reserve': 'scale_info::66',
},
'InitiateTeleport': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'effects': [
'scale_info::326',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::91',
'dest': 'scale_info::66',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::82',
'id': 'scale_info::81',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::80',
],
'ticket': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'beneficiary': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::77',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'receive': [
'scale_info::80',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'reserve': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'xcm': [
'scale_info::77',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'xcm': [
'scale_info::77',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::80',
],
'Wild': 'scale_info::92',
},
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::80',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::62',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::80',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::80',
],
'SetAppendix': [
'scale_info::77',
],
'SetErrorHandler': [
'scale_info::77',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::80',
],
'beneficiary': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::80',
],
'dest': {
'interior': 'scale_info::67',
'parents': 'u8',
},
'xcm': [
'scale_info::77',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::80',
],
},
],
},
}
)
teleport_assets
Teleport some assets from the local chain to some destination chain.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item. The weight limit for fees is not provided and thus is unlimited,
with all fees taken as needed from the asset.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. The first item should be the currency used to to pay the fee on thedestside. May not be empty.fee_asset_item: The index intoassetsof the item which should be used to pay fees.
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
Python
call = substrate.compose_call(
'PolkadotXcm', 'teleport_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
}
)
Events
AssetsClaimed
Some assets have been claimed from an asset trap
[ hash, origin, assets ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | H256 |
[u8; 32] |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| None | VersionedMultiAssets |
{'V0': [{'None': None, 'All': None, 'AllFungible': None, 'AllNonFungible': None, 'AllAbstractFungible': {'id': 'Bytes'}, 'AllAbstractNonFungible': {'class': 'Bytes'}, 'AllConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::100', 'X2': ('scale_info::100', 'scale_info::100'), 'X3': ('scale_info::100', 'scale_info::100', 'scale_info::100'), 'X4': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X5': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X6': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X7': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X8': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100')}}, 'AllConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::100', 'X2': ('scale_info::100', 'scale_info::100'), 'X3': ('scale_info::100', 'scale_info::100', 'scale_info::100'), 'X4': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X5': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X6': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X7': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X8': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100')}}, 'AbstractFungible': {'id': 'Bytes', 'amount': 'u128'}, 'AbstractNonFungible': {'class': 'Bytes', 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}, 'ConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::100', 'X2': ('scale_info::100', 'scale_info::100'), 'X3': ('scale_info::100', 'scale_info::100', 'scale_info::100'), 'X4': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X5': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X6': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X7': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X8': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100')}, 'amount': 'u128'}, 'ConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::100', 'X2': ('scale_info::100', 'scale_info::100'), 'X3': ('scale_info::100', 'scale_info::100', 'scale_info::100'), 'X4': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X5': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X6': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X7': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X8': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100')}, 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}}], 'V1': [{'id': {'Concrete': 'scale_info::66', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::83'}}]} |
AssetsTrapped
Some assets have been placed in an asset trap.
[ hash, origin, assets ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | H256 |
[u8; 32] |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| None | VersionedMultiAssets |
{'V0': [{'None': None, 'All': None, 'AllFungible': None, 'AllNonFungible': None, 'AllAbstractFungible': {'id': 'Bytes'}, 'AllAbstractNonFungible': {'class': 'Bytes'}, 'AllConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::100', 'X2': ('scale_info::100', 'scale_info::100'), 'X3': ('scale_info::100', 'scale_info::100', 'scale_info::100'), 'X4': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X5': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X6': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X7': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X8': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100')}}, 'AllConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::100', 'X2': ('scale_info::100', 'scale_info::100'), 'X3': ('scale_info::100', 'scale_info::100', 'scale_info::100'), 'X4': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X5': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X6': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X7': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X8': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100')}}, 'AbstractFungible': {'id': 'Bytes', 'amount': 'u128'}, 'AbstractNonFungible': {'class': 'Bytes', 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}, 'ConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::100', 'X2': ('scale_info::100', 'scale_info::100'), 'X3': ('scale_info::100', 'scale_info::100', 'scale_info::100'), 'X4': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X5': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X6': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X7': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X8': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100')}, 'amount': 'u128'}, 'ConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::100', 'X2': ('scale_info::100', 'scale_info::100'), 'X3': ('scale_info::100', 'scale_info::100', 'scale_info::100'), 'X4': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X5': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X6': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X7': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100'), 'X8': ('scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100', 'scale_info::100')}, 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}}], 'V1': [{'id': {'Concrete': 'scale_info::66', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::83'}}]} |
Attempted
Execution of an XCM message was attempted.
[ outcome ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | xcm::latest::Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
InvalidResponder
Expected query response has been received but the origin location of the response does not match that expected. The query remains registered for a later, valid, response to be received and acted upon.
[ origin location, id, expected location ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| None | QueryId |
u64 |
| None | Option<MultiLocation> |
(None, {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}) |
InvalidResponderVersion
Expected query response has been received but the expected origin location placed in storage by this runtime previously cannot be decoded. The query remains registered.
This is unexpected (since a location placed in storage in a previously executing runtime should be readable prior to query timeout) and dangerous since the possibly valid response will be dropped. Manual governance intervention is probably going to be needed.
[ origin location, id ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| None | QueryId |
u64 |
Notified
Query response has been received and query is removed. The registered notification has been dispatched and executed successfully.
[ id, pallet index, call index ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyDecodeFailed
Query response has been received and query is removed. The dispatch was unable to be
decoded into a Call; this might be due to dispatch function having a signature which
is not (origin, QueryId, Response).
[ id, pallet index, call index ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyDispatchError
Query response has been received and query is removed. There was a general error with dispatching the notification call.
[ id, pallet index, call index ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyOverweight
Query response has been received and query is removed. The registered notification could not be dispatched because the dispatch weight is greater than the maximum weight originally budgeted by this runtime for the query result.
[ id, pallet index, call index, actual weight, max budgeted weight ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
| None | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
| None | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
NotifyTargetMigrationFail
A given location which had a version change subscription was dropped owing to an error migrating the location to our new XCM format.
[ location, query ID ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | VersionedMultiLocation |
{'V0': {'Null': None, 'X1': {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}, 'V1': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}} |
| None | QueryId |
u64 |
NotifyTargetSendFail
A given location which had a version change subscription was dropped owing to an error sending the notification to it.
[ location, query ID, error ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| None | QueryId |
u64 |
| None | XcmError |
{'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None} |
ResponseReady
Query response has been received and is ready for taking with take_response. There is
no registered notification call.
[ id, response ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | Response |
{'Null': None, 'Assets': [{'id': {'Concrete': 'scale_info::66', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::83'}}], 'ExecutionResult': (None, ('u32', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None})), 'Version': 'u32'} |
ResponseTaken
Received query response has been read and removed.
[ id ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
Sent
A XCM message was sent.
[ origin, destination, message ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| None | Xcm<()> |
[{'WithdrawAsset': ['scale_info::80'], 'ReserveAssetDeposited': ['scale_info::80'], 'ReceiveTeleportedAsset': ['scale_info::80'], 'QueryResponse': {'query_id': 'u64', 'response': {'Null': None, 'Assets': ['scale_info::80'], 'ExecutionResult': (None, ('u32', 'scale_info::62')), 'Version': 'u32'}, 'max_weight': 'u64'}, 'TransferAsset': {'assets': ['scale_info::80'], 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::67'}}, 'TransferReserveAsset': {'assets': ['scale_info::80'], 'dest': {'parents': 'u8', 'interior': 'scale_info::67'}, 'xcm': ['scale_info::77']}, 'Transact': {'origin_type': ('Native', 'SovereignAccount', 'Superuser', 'Xcm'), 'require_weight_at_most': 'u64', 'call': {'encoded': 'Bytes'}}, 'HrmpNewChannelOpenRequest': {'sender': 'u32', 'max_message_size': 'u32', 'max_capacity': 'u32'}, 'HrmpChannelAccepted': {'recipient': 'u32'}, 'HrmpChannelClosing': {'initiator': 'u32', 'sender': 'u32', 'recipient': 'u32'}, 'ClearOrigin': None, 'DescendOrigin': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::68', 'scale_info::68'), 'X3': ('scale_info::68', 'scale_info::68', 'scale_info::68'), 'X4': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X5': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X6': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X7': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X8': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68')}, 'ReportError': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::67'}, 'max_response_weight': 'u64'}, 'DepositAsset': {'assets': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'max_assets': 'u32', 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::67'}}, 'DepositReserveAsset': {'assets': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'max_assets': 'u32', 'dest': {'parents': 'u8', 'interior': 'scale_info::67'}, 'xcm': ['scale_info::77']}, 'ExchangeAsset': {'give': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'receive': ['scale_info::80']}, 'InitiateReserveWithdraw': {'assets': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'reserve': {'parents': 'u8', 'interior': 'scale_info::67'}, 'xcm': ['scale_info::77']}, 'InitiateTeleport': {'assets': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'dest': {'parents': 'u8', 'interior': 'scale_info::67'}, 'xcm': ['scale_info::77']}, 'QueryHolding': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::67'}, 'assets': {'Definite': ['scale_info::80'], 'Wild': 'scale_info::92'}, 'max_response_weight': 'u64'}, 'BuyExecution': {'fees': {'id': 'scale_info::81', 'fun': 'scale_info::82'}, 'weight_limit': {'Unlimited': None, 'Limited': 'u64'}}, 'RefundSurplus': None, 'SetErrorHandler': ['scale_info::77'], 'SetAppendix': ['scale_info::77'], 'ClearError': None, 'ClaimAsset': {'assets': ['scale_info::80'], 'ticket': {'parents': 'u8', 'interior': 'scale_info::67'}}, 'Trap': 'u64', 'SubscribeVersion': {'query_id': 'u64', 'max_response_weight': 'u64'}, 'UnsubscribeVersion': None}] |
SupportedVersionChanged
The supported version of a location has been changed. This might be through an automatic notification or a manual intervention.
[ location, XCM version ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| None | XcmVersion |
u32 |
UnexpectedResponse
Query response received which does not match a registered query. This may be because a matching query was never registered, it may be because it is a duplicate response, or because the query timed out.
[ origin location, id ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| None | QueryId |
u64 |
VersionChangeNotified
An XCM version change notification message has been attempted to be sent.
[ destination, result ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
| None | XcmVersion |
u32 |
Storage functions
AssetTraps
The existing asset traps.
Key is the blake2 256 hash of (origin, versioned MultiAssets) pair. Value is the number of
times this pair has been trapped (usually just 1 if it exists at all).
Python
result = substrate.query(
'PolkadotXcm', 'AssetTraps', ['[u8; 32]']
)
Return value
'u32'
CurrentMigration
The current migration's stage, if any.
Python
result = substrate.query(
'PolkadotXcm', 'CurrentMigration', []
)
Return value
{
'MigrateAndNotifyOldTargets': None,
'MigrateSupportedVersion': None,
'MigrateVersionNotifiers': None,
'NotifyCurrentTargets': (None, 'Bytes'),
}
Queries
The ongoing queries.
Python
result = substrate.query(
'PolkadotXcm', 'Queries', ['u64']
)
Return value
{
'Pending': {
'maybe_notify': (None, ('u8', 'u8')),
'responder': {
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::100', 'scale_info::100'),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::68',
'X2': ('scale_info::68', 'scale_info::68'),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
},
'timeout': 'u32',
},
'Ready': {
'at': 'u32',
'response': {
'V0': {'Assets': ['scale_info::98']},
'V1': {'Assets': ['scale_info::80'], 'Version': 'u32'},
'V2': {
'Assets': ['scale_info::80'],
'ExecutionResult': (None, ('u32', 'scale_info::62')),
'Null': None,
'Version': 'u32',
},
},
},
'VersionNotifier': {
'is_active': 'bool',
'origin': {
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::100', 'scale_info::100'),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::68',
'X2': ('scale_info::68', 'scale_info::68'),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
},
},
}
QueryCounter
The latest available query index.
Python
result = substrate.query(
'PolkadotXcm', 'QueryCounter', []
)
Return value
'u64'
SafeXcmVersion
Default version to encode XCM when latest version of destination is unknown. If None,
then the destinations whose XCM version is unknown are considered unreachable.
Python
result = substrate.query(
'PolkadotXcm', 'SafeXcmVersion', []
)
Return value
'u32'
SupportedVersion
The Latest versions that we know various locations support.
Python
result = substrate.query(
'PolkadotXcm', 'SupportedVersion', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value
'u32'
VersionDiscoveryQueue
Destinations whose latest XCM version we would like to know. Duplicates not allowed, and
the u32 counter is the number of times that a send to the destination has been attempted,
which is used as a prioritization.
Python
result = substrate.query(
'PolkadotXcm', 'VersionDiscoveryQueue', []
)
Return value
[
(
{
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::100', 'scale_info::100'),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::68',
'X2': ('scale_info::68', 'scale_info::68'),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
},
'u32',
),
]
VersionNotifiers
All locations that we have requested version notifications from.
Python
result = substrate.query(
'PolkadotXcm', 'VersionNotifiers', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value
'u64'
VersionNotifyTargets
The target locations that are subscribed to our version changes, as well as the most recent of our versions we informed them of.
Python
result = substrate.query(
'PolkadotXcm', 'VersionNotifyTargets', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value
('u64', 'u64', 'u32')
Errors
AlreadySubscribed
The location is invalid since it already has a subscription from us.
BadLocation
The given location could not be used (e.g. because it cannot be expressed in the desired version of XCM).
BadVersion
The version of the Versioned value used is not able to be interpreted.
CannotReanchor
Could not re-anchor the assets to declare the fees for the destination chain.
DestinationNotInvertible
The destination MultiLocation provided cannot be inverted.
Empty
The assets to be sent are empty.
Filtered
The message execution fails the filter.
InvalidOrigin
Origin is invalid for sending.
NoSubscription
The referenced subscription could not be found.
SendFailure
There was some other issue (i.e. not to do with routing) in sending the message. Perhaps a lack of space for buffering the message.
TooManyAssets
Too many assets have been attempted for transfer.
Unreachable
The desired destination was unreachable, generally because there is a no way of routing to it.
UnweighableMessage
The message's weight could not be determined.
Pools
Calls
mutate_pools
Mutate the pools. Can only be called by root.
Attributes
| Name | Type |
|---|---|
| mutation | PoolsMutation |
Python
call = substrate.compose_call(
'Pools', 'mutate_pools', {
'mutation': {
'collator': {
'fee_share': 'u32',
},
'community': {
'fee_share': 'u32',
},
'fuel_tanks': {
'fee_share': 'u32',
},
'price_discovery': {
'fee_share': 'u32',
},
},
}
)
Events
PoolsMutated
Pools storage was modified by PoolsMutation
Attributes
| Name | Type | Composition |
|---|---|---|
| None | PoolsMutation |
{'community': {'fee_share': 'u32'}, 'collator': {'fee_share': 'u32'}, 'fuel_tanks': {'fee_share': 'u32'}, 'price_discovery': {'fee_share': 'u32'}} |
Storage functions
Pools
Information about the pools
Python
result = substrate.query(
'Pools', 'Pools', []
)
Return value
'scale_info::554'
Constants
FeeDistributorAccountId
The AccountId that holds fees until they are distributed
Value
'efRd63tR845wJTXfddgZNfNZ55o23Erydfz8esAmo1HfgMZMS'
Python
constant = substrate.get_constant('Pools', 'FeeDistributorAccountId')
PoolAccountIds
The AccountId for each pool
Value
{
'collator': 'efRd63tR845wJ4KW17VFyzzS38m2zRjMbabQa5VyTNTikSqdy',
'community': 'efRd63tR845wJ4FxoUfFgrDpxfAQ2t1iydU7LyzJCf577hgTH',
'fuel_tanks': 'efRd63tR845wJU26BdopK9W8Gw8D3SCNynXMfjiWGcNMJn9yZ',
'price_discovery': 'efRd63tR845wKpKPu3FxnN1JrKddzhuynU94yiEXzKGRqwsWv',
}
Python
constant = substrate.get_constant('Pools', 'PoolAccountIds')
PoolCount
The number of pools
Value
4
Python
constant = substrate.get_constant('Pools', 'PoolCount')
Errors
InvalidFeeShares
The fee shares must add up to 100 percent
PoolCountExceeded
The number of pools was exceeded
Preimage
Calls
note_preimage
Register a preimage on-chain.
If the preimage was previously requested, no fees or deposits are taken for providing the preimage. Otherwise, a deposit is taken proportional to the size of the preimage.
Attributes
| Name | Type |
|---|---|
| bytes | Vec<u8> |
Python
call = substrate.compose_call(
'Preimage', 'note_preimage', {'bytes': 'Bytes'}
)
request_preimage
Request a preimage be uploaded to the chain without paying any fees or deposits.
If the preimage requests has already been provided on-chain, we unreserve any deposit a user may have paid, and take the control of the preimage out of their hands.
Attributes
| Name | Type |
|---|---|
| hash | T::Hash |
Python
call = substrate.compose_call(
'Preimage', 'request_preimage', {'hash': '[u8; 32]'}
)
unnote_preimage
Clear an unrequested preimage from the runtime storage.
If len is provided, then it will be a much cheaper operation.
hash: The hash of the preimage to be removed from the store.len: The length of the preimage ofhash.
Attributes
| Name | Type |
|---|---|
| hash | T::Hash |
Python
call = substrate.compose_call(
'Preimage', 'unnote_preimage', {'hash': '[u8; 32]'}
)
unrequest_preimage
Clear a previously made request for a preimage.
NOTE: THIS MUST NOT BE CALLED ON hash MORE TIMES THAN request_preimage.
Attributes
| Name | Type |
|---|---|
| hash | T::Hash |
Python
call = substrate.compose_call(
'Preimage', 'unrequest_preimage', {'hash': '[u8; 32]'}
)
Events
Cleared
A preimage has ben cleared.
Attributes
| Name | Type | Composition |
|---|---|---|
| hash | T::Hash |
[u8; 32] |
Noted
A preimage has been noted.
Attributes
| Name | Type | Composition |
|---|---|---|
| hash | T::Hash |
[u8; 32] |
Requested
A preimage has been requested.
Attributes
| Name | Type | Composition |
|---|---|---|
| hash | T::Hash |
[u8; 32] |
Storage functions
PreimageFor
Python
result = substrate.query(
'Preimage', 'PreimageFor', [('[u8; 32]', 'u32')]
)
Return value
'Bytes'
StatusFor
The request status of a given hash.
Python
result = substrate.query(
'Preimage', 'StatusFor', ['[u8; 32]']
)
Return value
{
'Requested': {
'count': 'u32',
'deposit': (None, ('AccountId', 'u128')),
'len': (None, 'u32'),
},
'Unrequested': {'deposit': ('AccountId', 'u128'), 'len': 'u32'},
}
Errors
AlreadyNoted
Preimage has already been noted on-chain.
NotAuthorized
The user is not authorized to perform this action.
NotNoted
The preimage cannot be removed since it has not yet been noted.
NotRequested
The preimage request cannot be removed since no outstanding requests exist.
Requested
A preimage may not be removed when there are outstanding requests.
TooBig
Preimage is too large to store on-chain.
Scheduler
Calls
cancel
Cancel an anonymously scheduled task.
Attributes
| Name | Type |
|---|---|
| when | T::BlockNumber |
| index | u32 |
Python
call = substrate.compose_call(
'Scheduler', 'cancel', {'index': 'u32', 'when': 'u32'}
)
cancel_named
Cancel a named scheduled task.
Attributes
| Name | Type |
|---|---|
| id | TaskName |
Python
call = substrate.compose_call(
'Scheduler', 'cancel_named', {'id': '[u8; 32]'}
)
schedule
Anonymously schedule a task.
Attributes
| Name | Type |
|---|---|
| when | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Scheduler', 'schedule', {
'call': 'Call',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
'when': 'u32',
}
)
schedule_after
Anonymously schedule a task after a delay.
# <weight>
Same as [schedule].
# </weight>
Attributes
| Name | Type |
|---|---|
| after | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Scheduler', 'schedule_after', {
'after': 'u32',
'call': 'Call',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
}
)
schedule_named
Schedule a named task.
Attributes
| Name | Type |
|---|---|
| id | TaskName |
| when | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Scheduler', 'schedule_named', {
'call': 'Call',
'id': '[u8; 32]',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
'when': 'u32',
}
)
schedule_named_after
Schedule a named task after a delay.
# <weight>
Same as schedule_named.
# </weight>
Attributes
| Name | Type |
|---|---|
| id | TaskName |
| after | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Scheduler', 'schedule_named_after', {
'after': 'u32',
'call': 'Call',
'id': '[u8; 32]',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
}
)
Events
CallUnavailable
The call for the provided hash was not found so the task has been aborted.
Attributes
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<TaskName> |
(None, '[u8; 32]') |
Canceled
Canceled some task.
Attributes
| Name | Type | Composition |
|---|---|---|
| when | T::BlockNumber |
u32 |
| index | u32 |
u32 |
Dispatched
Dispatched some task.
Attributes
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<TaskName> |
(None, '[u8; 32]') |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
PeriodicFailed
The given task was unable to be renewed since the agenda is full at that block.
Attributes
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<TaskName> |
(None, '[u8; 32]') |
PermanentlyOverweight
The given task can never be executed since it is overweight.
Attributes
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<TaskName> |
(None, '[u8; 32]') |
Scheduled
Scheduled some task.
Attributes
| Name | Type | Composition |
|---|---|---|
| when | T::BlockNumber |
u32 |
| index | u32 |
u32 |
Storage functions
Agenda
Items to be executed, indexed by the block number that they should be executed on.
Python
result = substrate.query(
'Scheduler', 'Agenda', ['u32']
)
Return value
[
(
None,
{
'call': {
'Inline': 'Bytes',
'Legacy': {'hash': '[u8; 32]'},
'Lookup': {'hash': '[u8; 32]', 'len': 'u32'},
},
'maybe_id': (None, '[u8; 32]'),
'maybe_periodic': (None, ('u32', 'u32')),
'origin': {
'system': {'None': None, 'Root': None, 'Signed': 'AccountId'},
None: None,
'Council': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'CumulusXcm': {'Relay': None, 'SiblingParachain': 'u32'},
'PolkadotXcm': {
'Response': 'scale_info::66',
'Xcm': 'scale_info::66',
},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
},
'priority': 'u8',
},
),
]
IncompleteSince
Python
result = substrate.query(
'Scheduler', 'IncompleteSince', []
)
Return value
'u32'
Lookup
Lookup from a name to the block number and index of the task.
For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4 identities.
Python
result = substrate.query(
'Scheduler', 'Lookup', ['[u8; 32]']
)
Return value
('u32', 'u32')
Constants
MaxScheduledPerBlock
The maximum number of scheduled calls in the queue for a single block.
Value
50
Python
constant = substrate.get_constant('Scheduler', 'MaxScheduledPerBlock')
MaximumWeight
The maximum weight that may be scheduled per block for any dispatchables.
Value
{'proof_size': 14757395258967641292, 'ref_time': 1600000000000}
Python
constant = substrate.get_constant('Scheduler', 'MaximumWeight')
Errors
FailedToSchedule
Failed to schedule a call
Named
Attempt to use a non-named function on a named task.
NotFound
Cannot find the scheduled call.
RescheduleNoChange
Reschedule failed because it does not change scheduled time.
TargetBlockNumberInPast
Given target block number is in the past.
Session
Calls
purge_keys
Removes any session key(s) of the function caller.
This doesn't take effect until the next session.
The dispatch origin of this function must be Signed and the account must be either be convertible to a validator ID using the chain's typical addressing system (this usually means being a controller account) or directly convertible into a validator ID (which usually means being a stash account).
# <weight>
- Complexity: O(1) in number of key types. Actual cost depends on the number of length
of T::Keys::key_ids() which is fixed.
- DbReads: T::ValidatorIdOf, NextKeys, origin account
- DbWrites: NextKeys, origin account
- DbWrites per key id: KeyOwner
# </weight>
Attributes
No attributes
Python
call = substrate.compose_call(
'Session', 'purge_keys', {}
)
set_keys
Sets the session key(s) of the function caller to keys.
Allows an account to set its session key prior to becoming a validator.
This doesn't take effect until the next session.
The dispatch origin of this function must be signed.
# <weight>
- Complexity: O(1). Actual cost depends on the number of length of
T::Keys::key_ids() which is fixed.
- DbReads: origin account, T::ValidatorIdOf, NextKeys
- DbWrites: origin account, NextKeys
- DbReads per key id: KeyOwner
- DbWrites per key id: KeyOwner
# </weight>
Attributes
| Name | Type |
|---|---|
| keys | T::Keys |
| proof | Vec<u8> |
Python
call = substrate.compose_call(
'Session', 'set_keys', {
'keys': {
'aura': '[u8; 32]',
'pools': '[u8; 32]',
},
'proof': 'Bytes',
}
)
Events
NewSession
New session has happened. Note that the argument is the session index, not the block number as the type might suggest.
Attributes
| Name | Type | Composition |
|---|---|---|
| session_index | SessionIndex |
u32 |
Storage functions
CurrentIndex
Current index of the session.
Python
result = substrate.query(
'Session', 'CurrentIndex', []
)
Return value
'u32'
DisabledValidators
Indices of disabled validators.
The vec is always kept sorted so that we can find whether a given validator is
disabled using binary search. It gets cleared when on_session_ending returns
a new set of identities.
Python
result = substrate.query(
'Session', 'DisabledValidators', []
)
Return value
['u32']
KeyOwner
The owner of a key. The key is the KeyTypeId + the encoded key.
Python
result = substrate.query(
'Session', 'KeyOwner', [('[u8; 4]', 'Bytes')]
)
Return value
'AccountId'
NextKeys
The next session keys for a validator.
Python
result = substrate.query(
'Session', 'NextKeys', ['AccountId']
)
Return value
{'aura': '[u8; 32]', 'pools': '[u8; 32]'}
QueuedChanged
True if the underlying economic identities or weighting behind the validators has changed in the queued validator set.
Python
result = substrate.query(
'Session', 'QueuedChanged', []
)
Return value
'bool'
QueuedKeys
The queued keys for the next session. When the next session begins, these keys will be used to determine the validator's session keys.
Python
result = substrate.query(
'Session', 'QueuedKeys', []
)
Return value
[('AccountId', {'aura': '[u8; 32]', 'pools': '[u8; 32]'})]
Validators
The current set of validators.
Python
result = substrate.query(
'Session', 'Validators', []
)
Return value
['AccountId']
Errors
DuplicatedKey
Registered duplicate key.
InvalidProof
Invalid ownership proof.
NoAccount
Key setting account is not live, so it's impossible to associate keys.
NoAssociatedValidatorId
No associated validator ID for account.
NoKeys
No keys are associated with this account.
Sudo
Calls
set_key
Authenticates the current sudo key and sets the given AccountId (new) as the new sudo
key.
The dispatch origin for this call must be Signed.
# <weight> - O(1). - Limited storage reads. - One DB change. # </weight>
Attributes
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
Python
call = substrate.compose_call(
'Sudo', 'set_key', {
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
sudo
Authenticates the sudo key and dispatches a function call with Root origin.
The dispatch origin for this call must be Signed.
# <weight>
- O(1).
- Limited storage reads.
- One DB write (event).
- Weight of derivative call execution + 10,000.
# </weight>
Attributes
| Name | Type |
|---|---|
| call | Box<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Sudo', 'sudo', {'call': 'Call'}
)
sudo_as
Authenticates the sudo key and dispatches a function call with Signed origin from
a given account.
The dispatch origin for this call must be Signed.
# <weight>
- O(1).
- Limited storage reads.
- One DB write (event).
- Weight of derivative call execution + 10,000.
# </weight>
Attributes
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
| call | Box<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Sudo', 'sudo_as', {
'call': 'Call',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
sudo_unchecked_weight
Authenticates the sudo key and dispatches a function call with Root origin.
This function does not check the weight of the call, and instead allows the
Sudo user to specify the weight of the call.
The dispatch origin for this call must be Signed.
# <weight> - O(1). - The weight of this call is defined by the caller. # </weight>
Attributes
| Name | Type |
|---|---|
| call | Box<<T as Config>::RuntimeCall> |
| weight | Weight |
Python
call = substrate.compose_call(
'Sudo', 'sudo_unchecked_weight', {
'call': 'Call',
'weight': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
Events
KeyChanged
The [sudoer] just switched identity; the old key is supplied if one existed.
Attributes
| Name | Type | Composition |
|---|---|---|
| old_sudoer | Option<T::AccountId> |
(None, 'AccountId') |
Sudid
A sudo just took place. [result]
Attributes
| Name | Type | Composition |
|---|---|---|
| sudo_result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
SudoAsDone
A sudo just took place. [result]
Attributes
| Name | Type | Composition |
|---|---|---|
| sudo_result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
Storage functions
Key
The AccountId of the sudo key.
Python
result = substrate.query(
'Sudo', 'Key', []
)
Return value
'AccountId'
Errors
RequireSudo
Sender must be the Sudo account
System
Calls
fill_block
A dispatch that will fill the block weight up to the given ratio.
Attributes
| Name | Type |
|---|---|
| ratio | Perbill |
Python
call = substrate.compose_call(
'System', 'fill_block', {'ratio': 'u32'}
)
kill_prefix
Kill all storage items with a key that starts with the given prefix.
NOTE: We rely on the Root origin to provide us the number of subkeys under the prefix we are removing to accurately calculate the weight of this function.
Attributes
| Name | Type |
|---|---|
| prefix | Key |
| subkeys | u32 |
Python
call = substrate.compose_call(
'System', 'kill_prefix', {'prefix': 'Bytes', 'subkeys': 'u32'}
)
kill_storage
Kill some items from storage.
Attributes
| Name | Type |
|---|---|
| keys | Vec<Key> |
Python
call = substrate.compose_call(
'System', 'kill_storage', {'keys': ['Bytes']}
)
remark
Make some on-chain remark.
# <weight>
- O(1)
# </weight>
Attributes
| Name | Type |
|---|---|
| remark | Vec<u8> |
Python
call = substrate.compose_call(
'System', 'remark', {'remark': 'Bytes'}
)
remark_with_event
Make some on-chain remark and emit event.
Attributes
| Name | Type |
|---|---|
| remark | Vec<u8> |
Python
call = substrate.compose_call(
'System', 'remark_with_event', {'remark': 'Bytes'}
)
set_code
Set the new runtime code.
# <weight>
- O(C + S) where C length of code and S complexity of can_set_code
- 1 call to can_set_code: O(S) (calls sp_io::misc::runtime_version which is
expensive).
- 1 storage write (codec O(C)).
- 1 digest item.
- 1 event.
The weight of this function is dependent on the runtime, but generally this is very
expensive. We will treat this as a full block.
# </weight>
Attributes
| Name | Type |
|---|---|
| code | Vec<u8> |
Python
call = substrate.compose_call(
'System', 'set_code', {'code': 'Bytes'}
)
set_code_without_checks
Set the new runtime code without doing any checks of the given code.
# <weight>
- O(C) where C length of code
- 1 storage write (codec O(C)).
- 1 digest item.
- 1 event.
The weight of this function is dependent on the runtime. We will treat this as a full
block. # </weight>
Attributes
| Name | Type |
|---|---|
| code | Vec<u8> |
Python
call = substrate.compose_call(
'System', 'set_code_without_checks', {'code': 'Bytes'}
)
set_heap_pages
Set the number of pages in the WebAssembly environment's heap.
Attributes
| Name | Type |
|---|---|
| pages | u64 |
Python
call = substrate.compose_call(
'System', 'set_heap_pages', {'pages': 'u64'}
)
set_storage
Set some items of storage.
Attributes
| Name | Type |
|---|---|
| items | Vec<KeyValue> |
Python
call = substrate.compose_call(
'System', 'set_storage', {'items': [('Bytes', 'Bytes')]}
)
Events
CodeUpdated
:code was updated.
Attributes
No attributes
ExtrinsicFailed
An extrinsic failed.
Attributes
| Name | Type | Composition |
|---|---|---|
| dispatch_error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
| dispatch_info | DispatchInfo |
{'weight': {'ref_time': 'u64', 'proof_size': 'u64'}, 'class': ('Normal', 'Operational', 'Mandatory'), 'pays_fee': ('Yes', 'No')} |
ExtrinsicSuccess
An extrinsic completed successfully.
Attributes
| Name | Type | Composition |
|---|---|---|
| dispatch_info | DispatchInfo |
{'weight': {'ref_time': 'u64', 'proof_size': 'u64'}, 'class': ('Normal', 'Operational', 'Mandatory'), 'pays_fee': ('Yes', 'No')} |
KilledAccount
An account was reaped.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
NewAccount
A new account was created.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
Remarked
On on-chain remark happened.
Attributes
| Name | Type | Composition |
|---|---|---|
| sender | T::AccountId |
AccountId |
| hash | T::Hash |
[u8; 32] |
Storage functions
Account
The full account information for a particular account ID.
Python
result = substrate.query(
'System', 'Account', ['AccountId']
)
Return value
{
'consumers': 'u32',
'data': {
'fee_frozen': 'u128',
'free': 'u128',
'misc_frozen': 'u128',
'reserved': 'u128',
},
'nonce': 'u32',
'providers': 'u32',
'sufficients': 'u32',
}
AllExtrinsicsLen
Total length (in bytes) for all extrinsics put together, for the current block.
Python
result = substrate.query(
'System', 'AllExtrinsicsLen', []
)
Return value
'u32'
BlockHash
Map of block numbers to block hashes.
Python
result = substrate.query(
'System', 'BlockHash', ['u32']
)
Return value
'[u8; 32]'
BlockWeight
The current weight for the block.
Python
result = substrate.query(
'System', 'BlockWeight', []
)
Return value
{
'mandatory': {'proof_size': 'u64', 'ref_time': 'u64'},
'normal': {'proof_size': 'u64', 'ref_time': 'u64'},
'operational': {'proof_size': 'u64', 'ref_time': 'u64'},
}
Digest
Digest of the current block, also part of the block header.
Python
result = substrate.query(
'System', 'Digest', []
)
Return value
{
'logs': [
{
'Other': 'Bytes',
None: None,
'Consensus': ('[u8; 4]', 'Bytes'),
'PreRuntime': ('[u8; 4]', 'Bytes'),
'RuntimeEnvironmentUpdated': None,
'Seal': ('[u8; 4]', 'Bytes'),
},
],
}
EventCount
The number of events in the Events<T> list.
Python
result = substrate.query(
'System', 'EventCount', []
)
Return value
'u32'
EventTopics
Mapping between a topic (represented by T::Hash) and a vector of indexes
of events in the <Events<T>> list.
All topic vectors have deterministic storage locations depending on the topic. This allows light-clients to leverage the changes trie storage tracking mechanism and in case of changes fetch the list of events of interest.
The value has the type (T::BlockNumber, EventIndex) because if we used only just
the EventIndex then in case if the topic has the same contents on the next block
no notification will be triggered thus the event might be lost.
Python
result = substrate.query(
'System', 'EventTopics', ['[u8; 32]']
)
Return value
[('u32', 'u32')]
Events
Events deposited for the current block.
NOTE: The item is unbound and should therefore never be read on chain. It could otherwise inflate the PoV size of a block.
Events have a large in-memory size. Box the events to not go out-of-memory just in case someone still reads them from within the runtime.
Python
result = substrate.query(
'System', 'Events', []
)
Return value
[
{
'event': {
None: None,
'Balances': {
'BalanceSet': {
'free': 'u128',
'reserved': 'u128',
'who': 'AccountId',
},
'Deposit': {'amount': 'u128', 'who': 'AccountId'},
'DustLost': {'account': 'AccountId', 'amount': 'u128'},
'Endowed': {'account': 'AccountId', 'free_balance': 'u128'},
'ReserveRepatriated': {
'amount': 'u128',
'destination_status': 'scale_info::40',
'from': 'AccountId',
'to': 'AccountId',
},
'Reserved': {'amount': 'u128', 'who': 'AccountId'},
'Slashed': {'amount': 'u128', 'who': 'AccountId'},
'Transfer': {
'amount': 'u128',
'from': 'AccountId',
'to': 'AccountId',
},
'Unreserved': {'amount': 'u128', 'who': 'AccountId'},
'Withdraw': {'amount': 'u128', 'who': 'AccountId'},
},
'Bounties': {
'BountyAwarded': {'beneficiary': 'AccountId', 'index': 'u32'},
'BountyBecameActive': {'index': 'u32'},
'BountyCanceled': {'index': 'u32'},
'BountyClaimed': {
'beneficiary': 'AccountId',
'index': 'u32',
'payout': 'u128',
},
'BountyExtended': {'index': 'u32'},
'BountyProposed': {'index': 'u32'},
'BountyRejected': {'bond': 'u128', 'index': 'u32'},
},
'Claims': {
'Claimed': {
'amount': 'u128',
'ethereum_address': '[u8; 20]',
'who': 'AccountId',
},
},
'CollatorStaking': {
'CandidateJoined': {
'account_id': 'AccountId',
'amount': 'u128',
'rewards_cut': 'u32',
},
'CandidateRemoved': {'account_id': 'AccountId'},
'CollatorSelected': {'account_id': 'AccountId'},
'NewInvulnerables': {'new': ['AccountId']},
'Nominated': {
'account_id': 'AccountId',
'amount': 'u128',
'collator_id': 'AccountId',
},
'NominationRemoved': {
'account_id': 'AccountId',
'amount': 'u128',
'collator_id': 'AccountId',
},
'RoundFinalized': {'number': 'u32'},
},
'CommunityPool': {
'Awarded': {
'account': 'AccountId',
'award': 'u128',
'proposal_index': 'u32',
},
'Burnt': {'burnt_funds': 'u128'},
'Deposit': {'value': 'u128'},
'Proposed': {'proposal_index': 'u32'},
'Rejected': {'proposal_index': 'u32', 'slashed': 'u128'},
'Rollover': {'rollover_balance': 'u128'},
'SpendApproved': {
'amount': 'u128',
'beneficiary': 'AccountId',
'proposal_index': 'u32',
},
'Spending': {'budget_remaining': 'u128'},
},
'Council': {
'Approved': {'proposal_hash': '[u8; 32]'},
'Closed': {
'no': 'u32',
'proposal_hash': '[u8; 32]',
'yes': 'u32',
},
'Disapproved': {'proposal_hash': '[u8; 32]'},
'Executed': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::31',
},
'MemberExecuted': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::31',
},
'Proposed': {
'account': 'AccountId',
'proposal_hash': '[u8; 32]',
'proposal_index': 'u32',
'threshold': 'u32',
},
'Voted': {
'account': 'AccountId',
'no': 'u32',
'proposal_hash': '[u8; 32]',
'voted': 'bool',
'yes': 'u32',
},
},
'CumulusXcm': {
'ExecutedDownward': ('[u8; 8]', 'scale_info::65'),
'InvalidFormat': '[u8; 8]',
'UnsupportedVersion': '[u8; 8]',
},
'Democracy': {
'Blacklisted': {'proposal_hash': '[u8; 32]'},
'Cancelled': {'ref_index': 'u32'},
'Delegated': {'target': 'AccountId', 'who': 'AccountId'},
'ExternalTabled': None,
'NotPassed': {'ref_index': 'u32'},
'Passed': {'ref_index': 'u32'},
'ProposalCanceled': {'prop_index': 'u32'},
'Proposed': {'deposit': 'u128', 'proposal_index': 'u32'},
'Seconded': {'prop_index': 'u32', 'seconder': 'AccountId'},
'Started': {'ref_index': 'u32', 'threshold': 'scale_info::46'},
'Tabled': {'deposit': 'u128', 'proposal_index': 'u32'},
'Undelegated': {'account': 'AccountId'},
'Vetoed': {
'proposal_hash': '[u8; 32]',
'until': 'u32',
'who': 'AccountId',
},
'Voted': {
'ref_index': 'u32',
'vote': 'scale_info::47',
'voter': 'AccountId',
},
},
'DmpQueue': {
'ExecutedDownward': {
'message_id': '[u8; 32]',
'outcome': 'scale_info::65',
},
'InvalidFormat': {'message_id': '[u8; 32]'},
'OverweightEnqueued': {
'message_id': '[u8; 32]',
'overweight_index': 'u64',
'required_weight': 'scale_info::8',
},
'OverweightServiced': {
'overweight_index': 'u64',
'weight_used': 'scale_info::8',
},
'UnsupportedVersion': {'message_id': '[u8; 32]'},
'WeightExhausted': {
'message_id': '[u8; 32]',
'remaining_weight': 'scale_info::8',
'required_weight': 'scale_info::8',
},
},
'EfinityUtility': {
'BatchDispatched': None,
'BatchFailed': {'error': 'scale_info::24', 'index': 'u32'},
'BatchPartiallyDispatched': [('u32', 'scale_info::24')],
},
'EfinityXcm': {
'MinimumWeightUpdated': {
'fee': 'u128',
'minimum_weight': 'scale_info::8',
},
},
'ExtrinsicPause': {
'ExtrinsicPaused': {
'extrinsic_name': 'Bytes',
'pallet_name': 'Bytes',
},
'ExtrinsicResumed': {
'extrinsic_name': 'Bytes',
'pallet_name': 'Bytes',
},
'PalletPaused': {'pallet_name': 'Bytes'},
'PalletResumed': {'pallet_name': 'Bytes'},
},
'FuelTanks': {
'AccountAdded': {
'tank_deposit': 'u128',
'tank_id': 'AccountId',
'user_deposit': 'u128',
'user_id': 'AccountId',
},
'AccountRemoved': {
'tank_id': 'AccountId',
'user_id': 'AccountId',
},
'AccountRuleDataRemoved': {
'rule_kind': 'scale_info::204',
'rule_set_id': 'u32',
'tank_id': 'AccountId',
'user_id': 'AccountId',
},
'CallDispatched': {
'caller': 'AccountId',
'tank_id': 'AccountId',
},
'DispatchFailed': {
'caller': 'AccountId',
'error': 'scale_info::24',
'tank_id': 'AccountId',
},
'FreezeStateMutated': {
'is_frozen': 'bool',
'rule_set_id': (None, 'u32'),
'tank_id': 'AccountId',
},
'FuelTankCreated': {
'name': 'Bytes',
'owner': 'AccountId',
'tank_id': 'AccountId',
},
'FuelTankDestroyed': {'tank_id': 'AccountId'},
'FuelTankMutated': {
'mutation': 'scale_info::189',
'tank_id': 'AccountId',
},
'MutateFreezeStateScheduled': {
'is_frozen': 'bool',
'rule_set_id': (None, 'u32'),
'tank_id': 'AccountId',
},
'RuleSetInserted': {
'rule_set_id': 'u32',
'tank_id': 'AccountId',
},
'RuleSetRemoved': {
'rule_set_id': 'u32',
'tank_id': 'AccountId',
},
'ScheduleMutateFreezeStateFailed': {
'error': 'scale_info::24',
'is_frozen': 'bool',
'rule_set_id': (None, 'u32'),
'tank_id': 'AccountId',
},
},
'Marketplace': {
'AuctionFinalized': {
'listing_id': '[u8; 32]',
'protocol_fee': 'u128',
'royalty': 'u128',
'winning_bid': (None, 'scale_info::214'),
},
'BidPlaced': {
'bid': 'scale_info::214',
'listing_id': '[u8; 32]',
},
'ListingCancelled': {'listing_id': '[u8; 32]'},
'ListingCreated': {
'listing': 'scale_info::206',
'listing_id': '[u8; 32]',
},
'ListingFilled': {
'amount_filled': 'u128',
'amount_remaining': 'u128',
'buyer': 'AccountId',
'listing_id': '[u8; 32]',
'protocol_fee': 'u128',
'royalty': 'u128',
},
'ProtocolFeeSet': {'protocol_fee': 'u32'},
},
'MultiTokens': {
'Approved': {
'amount': (None, 'u128'),
'collection_id': 'u128',
'expiration': (None, 'u32'),
'operator': 'AccountId',
'owner': 'AccountId',
'token_id': (None, 'u128'),
},
'AttributeRemoved': {
'collection_id': 'u128',
'key': 'Bytes',
'token_id': (None, 'u128'),
},
'AttributeSet': {
'collection_id': 'u128',
'key': 'Bytes',
'token_id': (None, 'u128'),
'value': 'Bytes',
},
'BalanceSet': {
'account_id': 'AccountId',
'balance': 'u128',
'collection_id': 'u128',
'reserved_balance': 'u128',
'token_id': 'u128',
},
'Burned': {
'account_id': 'AccountId',
'amount': 'u128',
'collection_id': 'u128',
'token_id': 'u128',
},
'CollectionAccountCreated': {
'account_id': 'AccountId',
'collection_id': 'u128',
},
'CollectionAccountDestroyed': {
'account_id': 'AccountId',
'collection_id': 'u128',
},
'CollectionAccountUpdated': {
'account_id': 'AccountId',
'collection_id': 'u128',
'value': (None, 'scale_info::159'),
},
'CollectionCreated': {
'collection_id': 'u128',
'owner': 'AccountId',
},
'CollectionDestroyed': {
'caller': 'AccountId',
'collection_id': 'u128',
},
'CollectionMutated': {
'collection_id': 'u128',
'mutation': 'scale_info::111',
},
'CollectionUpdated': {
'collection_id': 'u128',
'value': (None, 'scale_info::142'),
},
'Deposit': {
'account_id': 'AccountId',
'amount': 'u128',
'collection_id': 'u128',
'token_id': 'u128',
},
'Frozen': {
'collection_id': 'u128',
'freeze_type': 'scale_info::135',
},
'MigrationStatusUpdated': {'stage': 'scale_info::179'},
'Minted': {
'amount': 'u128',
'collection_id': 'u128',
'issuer': 'scale_info::120',
'recipient': 'AccountId',
'token_id': 'u128',
},
'MovedReserves': {
'amount': 'u128',
'collection_id': 'u128',
'destination': 'AccountId',
'reserve_id': (None, '[u8; 8]'),
'source': 'AccountId',
'token_id': 'u128',
},
'NextCollectionIdUpdated': {'collection_id': 'u128'},
'ReserveRepatriated': {
'amount': 'u128',
'collection_id': 'u128',
'destination': 'AccountId',
'reserve_id': (None, '[u8; 8]'),
'source': 'AccountId',
'token_id': 'u128',
},
'Reserved': {
'account_id': 'AccountId',
'amount': 'u128',
'collection_id': 'u128',
'reserve_id': (None, '[u8; 8]'),
'token_id': 'u128',
},
'Slashed': {
'account_id': 'AccountId',
'amount': 'u128',
'collection_id': 'u128',
'token_id': 'u128',
},
'Thawed': {
'collection_id': 'u128',
'freeze_type': 'scale_info::135',
},
'TokenAccountCreated': {
'account_id': 'AccountId',
'balance': 'u128',
'collection_id': 'u128',
'token_id': 'u128',
},
'TokenAccountDestroyed': {
'account_id': 'AccountId',
'collection_id': 'u128',
'token_id': 'u128',
},
'TokenAccountUpdated': {
'account_id': 'AccountId',
'collection_id': 'u128',
'token_id': 'u128',
'value': (None, 'scale_info::166'),
},
'TokenCreated': {
'collection_id': 'u128',
'initial_supply': 'u128',
'issuer': 'scale_info::120',
'token_id': 'u128',
},
'TokenDestroyed': {
'caller': 'AccountId',
'collection_id': 'u128',
'token_id': 'u128',
},
'TokenMutated': {
'collection_id': 'u128',
'mutation': 'scale_info::121',
'token_id': 'u128',
},
'TokenUpdated': {
'collection_id': 'u128',
'token_id': 'u128',
'value': (None, 'scale_info::155'),
},
'Transferred': {
'amount': 'u128',
'collection_id': 'u128',
'from': 'AccountId',
'operator': 'AccountId',
'to': 'AccountId',
'token_id': 'u128',
},
'Unapproved': {
'collection_id': 'u128',
'operator': 'AccountId',
'owner': 'AccountId',
'token_id': (None, 'u128'),
},
'Unreserved': {
'account_id': 'AccountId',
'amount': 'u128',
'collection_id': 'u128',
'reserve_id': (None, '[u8; 8]'),
'token_id': 'u128',
},
'Withdraw': {
'account_id': 'AccountId',
'amount': 'u128',
'collection_id': 'u128',
'token_id': 'u128',
},
},
'Multisig': {
'MultisigApproval': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
'timepoint': 'scale_info::55',
},
'MultisigCancelled': {
'call_hash': '[u8; 32]',
'cancelling': 'AccountId',
'multisig': 'AccountId',
'timepoint': 'scale_info::55',
},
'MultisigExecuted': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
'result': 'scale_info::31',
'timepoint': 'scale_info::55',
},
'NewMultisig': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
},
},
'OrmlXcm': {
'Sent': {'message': ['scale_info::77'], 'to': 'scale_info::66'},
},
'ParachainSystem': {
'DownwardMessagesProcessed': {
'dmq_head': '[u8; 32]',
'weight_used': 'scale_info::8',
},
'DownwardMessagesReceived': {'count': 'u32'},
'UpgradeAuthorized': {'code_hash': '[u8; 32]'},
'ValidationFunctionApplied': {'relay_chain_block_num': 'u32'},
'ValidationFunctionDiscarded': None,
'ValidationFunctionStored': None,
},
'PolkadotXcm': {
'AssetsClaimed': (
'[u8; 32]',
'scale_info::66',
'scale_info::96',
),
'AssetsTrapped': (
'[u8; 32]',
'scale_info::66',
'scale_info::96',
),
'Attempted': {
'Complete': 'u64',
'Error': 'scale_info::62',
'Incomplete': ('u64', 'scale_info::62'),
},
'InvalidResponder': (
'scale_info::66',
'u64',
(None, 'scale_info::66'),
),
'InvalidResponderVersion': ('scale_info::66', 'u64'),
'Notified': ('u64', 'u8', 'u8'),
'NotifyDecodeFailed': ('u64', 'u8', 'u8'),
'NotifyDispatchError': ('u64', 'u8', 'u8'),
'NotifyOverweight': (
'u64',
'u8',
'u8',
'scale_info::8',
'scale_info::8',
),
'NotifyTargetMigrationFail': ('scale_info::101', 'u64'),
'NotifyTargetSendFail': (
'scale_info::66',
'u64',
'scale_info::62',
),
'ResponseReady': ('u64', 'scale_info::86'),
'ResponseTaken': 'u64',
'Sent': (
'scale_info::66',
'scale_info::66',
['scale_info::77'],
),
'SupportedVersionChanged': ('scale_info::66', 'u32'),
'UnexpectedResponse': ('scale_info::66', 'u64'),
'VersionChangeNotified': ('scale_info::66', 'u32'),
},
'Pools': {
'PoolsMutated': {
'collator': 'scale_info::184',
'community': 'scale_info::184',
'fuel_tanks': 'scale_info::184',
'price_discovery': 'scale_info::184',
},
},
'Preimage': {
'Cleared': {'hash': '[u8; 32]'},
'Noted': {'hash': '[u8; 32]'},
'Requested': {'hash': '[u8; 32]'},
},
'Scheduler': {
'CallUnavailable': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'Canceled': {'index': 'u32', 'when': 'u32'},
'Dispatched': {
'id': (None, '[u8; 32]'),
'result': 'scale_info::31',
'task': ('u32', 'u32'),
},
'PeriodicFailed': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'PermanentlyOverweight': {
'id': (None, '[u8; 32]'),
'task': ('u32', 'u32'),
},
'Scheduled': {'index': 'u32', 'when': 'u32'},
},
'Session': {'NewSession': {'session_index': 'u32'}},
'Sudo': {
'KeyChanged': {'old_sudoer': (None, 'AccountId')},
'Sudid': {'sudo_result': 'scale_info::31'},
'SudoAsDone': {'sudo_result': 'scale_info::31'},
},
'System': {
'CodeUpdated': None,
'ExtrinsicFailed': {
'dispatch_error': 'scale_info::24',
'dispatch_info': 'scale_info::21',
},
'ExtrinsicSuccess': {'dispatch_info': 'scale_info::21'},
'KilledAccount': {'account': 'AccountId'},
'NewAccount': {'account': 'AccountId'},
'Remarked': {'hash': '[u8; 32]', 'sender': 'AccountId'},
},
'TechnicalCommittee': {
'Approved': {'proposal_hash': '[u8; 32]'},
'Closed': {
'no': 'u32',
'proposal_hash': '[u8; 32]',
'yes': 'u32',
},
'Disapproved': {'proposal_hash': '[u8; 32]'},
'Executed': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::31',
},
'MemberExecuted': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::31',
},
'Proposed': {
'account': 'AccountId',
'proposal_hash': '[u8; 32]',
'proposal_index': 'u32',
'threshold': 'u32',
},
'Voted': {
'account': 'AccountId',
'no': 'u32',
'proposal_hash': '[u8; 32]',
'voted': 'bool',
'yes': 'u32',
},
},
'TechnicalMembership': (
'MemberAdded',
'MemberRemoved',
'MembersSwapped',
'MembersReset',
'KeyChanged',
'Dummy',
),
'TransactionPayment': {
'TransactionFeePaid': {
'actual_fee': 'u128',
'tip': 'u128',
'who': 'AccountId',
},
},
'UnknownTokens': {
'Deposited': {
'asset': 'scale_info::80',
'who': 'scale_info::66',
},
'Withdrawn': {
'asset': 'scale_info::80',
'who': 'scale_info::66',
},
},
'Utility': {
'BatchCompleted': None,
'BatchCompletedWithErrors': None,
'BatchInterrupted': {
'error': 'scale_info::24',
'index': 'u32',
},
'DispatchedAs': {'result': 'scale_info::31'},
'ItemCompleted': None,
'ItemFailed': {'error': 'scale_info::24'},
},
'Vesting': {
'Claimed': {'amount': 'u128', 'who': 'AccountId'},
'VestingScheduleAdded': {
'from': 'AccountId',
'to': 'AccountId',
'vesting_schedule': 'scale_info::43',
},
'VestingSchedulesUpdated': {'who': 'AccountId'},
},
'XTokens': {
'TransferredMultiAssets': {
'assets': ['scale_info::80'],
'dest': 'scale_info::66',
'fee': 'scale_info::80',
'sender': 'AccountId',
},
},
'XcmpQueue': {
'BadFormat': {'message_hash': (None, '[u8; 32]')},
'BadVersion': {'message_hash': (None, '[u8; 32]')},
'Fail': {
'error': 'scale_info::62',
'message_hash': (None, '[u8; 32]'),
'weight': 'scale_info::8',
},
'OverweightEnqueued': {
'index': 'u64',
'required': 'scale_info::8',
'sender': 'u32',
'sent_at': 'u32',
},
'OverweightServiced': {
'index': 'u64',
'used': 'scale_info::8',
},
'Success': {'message_hash': (None, '[u8; 32]'), 'weight': 'scale_info::8'},
'UpwardMessageSent': {'message_hash': (None, '[u8; 32]')},
'XcmpMessageSent': {'message_hash': (None, '[u8; 32]')},
},
},
'phase': {
'ApplyExtrinsic': 'u32',
'Finalization': None,
'Initialization': None,
},
'topics': ['[u8; 32]'],
},
]
ExecutionPhase
The execution phase of the block.
Python
result = substrate.query(
'System', 'ExecutionPhase', []
)
Return value
{'ApplyExtrinsic': 'u32', 'Finalization': None, 'Initialization': None}
ExtrinsicCount
Total extrinsics count for the current block.
Python
result = substrate.query(
'System', 'ExtrinsicCount', []
)
Return value
'u32'
ExtrinsicData
Extrinsics data for the current block (maps an extrinsic's index to its data).
Python
result = substrate.query(
'System', 'ExtrinsicData', ['u32']
)
Return value
'Bytes'
LastRuntimeUpgrade
Stores the spec_version and spec_name of when the last runtime upgrade happened.
Python
result = substrate.query(
'System', 'LastRuntimeUpgrade', []
)
Return value
{'spec_name': 'Str', 'spec_version': 'u32'}
Number
The current block number being processed. Set by execute_block.
Python
result = substrate.query(
'System', 'Number', []
)
Return value
'u32'
ParentHash
Hash of the previous block.
Python
result = substrate.query(
'System', 'ParentHash', []
)
Return value
'[u8; 32]'
UpgradedToTripleRefCount
True if we have upgraded so that AccountInfo contains three types of RefCount. False
(default) if not.
Python
result = substrate.query(
'System', 'UpgradedToTripleRefCount', []
)
Return value
'bool'
UpgradedToU32RefCount
True if we have upgraded so that type RefCount is u32. False (default) if not.
Python
result = substrate.query(
'System', 'UpgradedToU32RefCount', []
)
Return value
'bool'
Constants
BlockHashCount
Maximum number of block number to block hash mappings to keep (oldest pruned first).
Value
250
Python
constant = substrate.get_constant('System', 'BlockHashCount')
BlockLength
The maximum length of a block (in bytes).
Value
{'max': {'mandatory': 5242880, 'normal': 3932160, 'operational': 5242880}}
Python
constant = substrate.get_constant('System', 'BlockLength')
BlockWeights
Block & extrinsics weights: base values and limits.
Value
{
'base_block': {'proof_size': 0, 'ref_time': 358523000},
'max_block': {
'proof_size': 18446744073709551615,
'ref_time': 2000000000000,
},
'per_class': {
'mandatory': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 98974000},
'max_extrinsic': None,
'max_total': None,
'reserved': None,
},
'normal': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 98974000},
'max_extrinsic': {
'proof_size': 11990383647911208550,
'ref_time': 1299901026000,
},
'max_total': {
'proof_size': 13835058055282163711,
'ref_time': 1500000000000,
},
'reserved': {'proof_size': 0, 'ref_time': 0},
},
'operational': {
'base_extrinsic': {'proof_size': 0, 'ref_time': 98974000},
'max_extrinsic': {
'proof_size': 16602069666338596454,
'ref_time': 1799901026000,
},
'max_total': {
'proof_size': 18446744073709551615,
'ref_time': 2000000000000,
},
'reserved': {
'proof_size': 4611686018427387904,
'ref_time': 500000000000,
},
},
},
}
Python
constant = substrate.get_constant('System', 'BlockWeights')
DbWeight
The weight of runtime database operations the runtime can invoke.
Value
{'read': 25000000, 'write': 100000000}
Python
constant = substrate.get_constant('System', 'DbWeight')
SS58Prefix
The designated SS58 prefix of this chain.
This replaces the "ss58Format" property declared in the chain spec. Reason is that the runtime should know about the prefix in order to make use of it as an identifier of the chain.
Value
1110
Python
constant = substrate.get_constant('System', 'SS58Prefix')
Version
Get the chain's current version.
Value
{
'apis': [
('0xdf6acb689907609b', 4),
('0x37e397fc7c91f5e4', 1),
('0x40fe3ad401f8959a', 6),
('0xd2bc9897eed08f15', 3),
('0xf78b278be53f454c', 2),
('0xab3c0572291feb8b', 1),
('0xdd718d5cc53262d4', 1),
('0xea93e3f16f3d6962', 2),
('0xbc9d89904f5b923f', 1),
('0x37c8bb1350a9a2a8', 2),
('0xf3ff14d5ab527059', 2),
],
'authoring_version': 0,
'impl_name': 'efinity',
'impl_version': 0,
'spec_name': 'efinity',
'spec_version': 3012,
'state_version': 0,
'transaction_version': 7,
}
Python
constant = substrate.get_constant('System', 'Version')
Errors
CallFiltered
The origin filter prevent the call to be dispatched.
FailedToExtractRuntimeVersion
Failed to extract the runtime version from the new runtime.
Either calling Core_version or decoding RuntimeVersion failed.
InvalidSpecName
The name of specification does not match between the current runtime and the new runtime.
NonDefaultComposite
Suicide called when the account has non-default composite data.
NonZeroRefCount
There is a non-zero reference count preventing the account from being purged.
SpecVersionNeedsToIncrease
The specification version is not allowed to decrease between the current runtime and the new runtime.
TechnicalCommittee
Calls
close
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | Weight |
| length_bound | u32 |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'close', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': {
'proof_size': 'u64',
'ref_time': 'u64',
},
}
)
close_old_weight
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | OldWeight |
| length_bound | u32 |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'close_old_weight', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': 'u64',
}
)
disapprove_proposal
Disapprove a proposal, close, and remove it from the system, regardless of its current state.
Must be called by the Root origin.
Parameters:
* proposal_hash: The hash of the proposal that should be disapproved.
# <weight> Complexity: O(P) where P is the number of max proposals DB Weight: * Reads: Proposals * Writes: Voting, Proposals, ProposalOf # </weight>
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'disapprove_proposal', {'proposal_hash': '[u8; 32]'}
)
execute
Dispatch a proposal from a member using the Member origin.
Origin must be a member of the collective.
# <weight>
## Weight
- O(M + P) where M members-count (code-bounded) and P complexity of dispatching
proposal
- DB: 1 read (codec O(M)) + DB access of proposal
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'execute', {
'length_bound': 'u32',
'proposal': 'Call',
}
)
propose
Add a new proposal to either be voted on or executed directly.
Requires the sender to be member.
threshold determines whether proposal is executed directly (threshold < 2)
or put up for voting.
# <weight>
## Weight
- O(B + M + P1) or O(B + M + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- branching is influenced by threshold where:
- P1 is proposal execution complexity (threshold < 2)
- P2 is proposals-count (code-bounded) (threshold >= 2)
- DB:
- 1 storage read is_member (codec O(M))
- 1 storage read ProposalOf::contains_key (codec O(1))
- DB accesses influenced by threshold:
- EITHER storage accesses done by proposal (threshold < 2)
- OR proposal insertion (threshold <= 2)
- 1 storage mutation Proposals (codec O(P2))
- 1 storage mutation ProposalCount (codec O(1))
- 1 storage write ProposalOf (codec O(B))
- 1 storage write Voting (codec O(M))
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| threshold | MemberCount |
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'propose', {
'length_bound': 'u32',
'proposal': 'Call',
'threshold': 'u32',
}
)
set_members
Set the collective's membership.
new_members: The new member list. Be nice to the chain and provide it sorted.prime: The prime member whose vote sets the default.old_count: The upper bound for the previous number of members in storage. Used for weight estimation.
Requires root origin.
NOTE: Does not enforce the expected MaxMembers limit on the amount of members, but
the weight estimations rely on it to estimate dispatchable weight.
# WARNING:
The pallet-collective can also be managed by logic outside of the pallet through the
implementation of the trait [ChangeMembers].
Any call to set_members must be careful that the member set doesn't get out of sync
with other logic managing the member set.
# <weight>
## Weight
- O(MP + N) where:
- M old-members-count (code- and governance-bounded)
- N new-members-count (code- and governance-bounded)
- P proposals-count (code-bounded)
- DB:
- 1 storage mutation (codec O(M) read, O(N) write) for reading and writing the
members
- 1 storage read (codec O(P)) for reading the proposals
- P storage mutations (codec O(M)) for updating the votes for each proposal
- 1 storage write (codec O(1)) for deleting the old prime and setting the new one
# </weight>
Attributes
| Name | Type |
|---|---|
| new_members | Vec<T::AccountId> |
| prime | Option<T::AccountId> |
| old_count | MemberCount |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'set_members', {
'new_members': ['AccountId'],
'old_count': 'u32',
'prime': (None, 'AccountId'),
}
)
vote
Add an aye or nay vote for the sender to the given proposal.
Requires the sender to be a member.
Transaction fees will be waived if the member is voting on any particular proposal
for the first time and the call is successful. Subsequent vote changes will charge a
fee.
# <weight>
## Weight
- O(M) where M is members-count (code- and governance-bounded)
- DB:
- 1 storage read Members (codec O(M))
- 1 storage mutation Voting (codec O(M))
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal | T::Hash |
| index | ProposalIndex |
| approve | bool |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'vote', {
'approve': 'bool',
'index': 'u32',
'proposal': '[u8; 32]',
}
)
Events
Approved
A motion was approved by the required threshold.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Closed
A proposal was closed because its threshold was reached or after its duration was up.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Disapproved
A motion was not approved by the required threshold.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Executed
A motion was executed; result will be Ok if it returned without error.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
MemberExecuted
A single member did some action; result will be Ok if it returned without error.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
Proposed
A motion (given hash) has been proposed (by given account) with a threshold (given
MemberCount).
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_index | ProposalIndex |
u32 |
| proposal_hash | T::Hash |
[u8; 32] |
| threshold | MemberCount |
u32 |
Voted
A motion (given hash) has been voted on by given account, leaving
a tally (yes votes and no votes given respectively as MemberCount).
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_hash | T::Hash |
[u8; 32] |
| voted | bool |
bool |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Storage functions
Members
The current members of the collective. This is stored sorted (just by value).
Python
result = substrate.query(
'TechnicalCommittee', 'Members', []
)
Return value
['AccountId']
Prime
The prime member that helps determine the default vote behavior in case of absentations.
Python
result = substrate.query(
'TechnicalCommittee', 'Prime', []
)
Return value
'AccountId'
ProposalCount
Proposals so far.
Python
result = substrate.query(
'TechnicalCommittee', 'ProposalCount', []
)
Return value
'u32'
ProposalOf
Actual proposal for a given hash, if it's current.
Python
result = substrate.query(
'TechnicalCommittee', 'ProposalOf', ['[u8; 32]']
)
Return value
'Call'
Proposals
The hashes of the active proposals.
Python
result = substrate.query(
'TechnicalCommittee', 'Proposals', []
)
Return value
['[u8; 32]']
Voting
Votes on a given proposal, if it is ongoing.
Python
result = substrate.query(
'TechnicalCommittee', 'Voting', ['[u8; 32]']
)
Return value
{'ayes': ['AccountId'], 'end': 'u32', 'index': 'u32', 'nays': ['AccountId'], 'threshold': 'u32'}
Errors
AlreadyInitialized
Members are already initialized!
DuplicateProposal
Duplicate proposals not allowed
DuplicateVote
Duplicate vote ignored
NotMember
Account is not a member
ProposalMissing
Proposal must exist
TooEarly
The close call was made too early, before the end of the voting.
TooManyProposals
There can only be a maximum of MaxProposals active proposals.
WrongIndex
Mismatched index
WrongProposalLength
The given length bound for the proposal was too low.
WrongProposalWeight
The given weight bound for the proposal was too low.
TechnicalMembership
Calls
add_member
Add a member who to the set.
May only be called from T::AddOrigin.
Attributes
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python
call = substrate.compose_call(
'TechnicalMembership', 'add_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
change_key
Swap out the sending member for some other key new.
May only be called from Signed origin of a current member.
Prime membership is passed from the origin account to new, if extant.
Attributes
| Name | Type |
|---|---|
| new | AccountIdLookupOf<T> |
Python
call = substrate.compose_call(
'TechnicalMembership', 'change_key', {
'new': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
clear_prime
Remove the prime member if it exists.
May only be called from T::PrimeOrigin.
Attributes
No attributes
Python
call = substrate.compose_call(
'TechnicalMembership', 'clear_prime', {}
)
remove_member
Remove a member who from the set.
May only be called from T::RemoveOrigin.
Attributes
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python
call = substrate.compose_call(
'TechnicalMembership', 'remove_member', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
reset_members
Change the membership to a new set, disregarding the existing membership. Be nice and
pass members pre-sorted.
May only be called from T::ResetOrigin.
Attributes
| Name | Type |
|---|---|
| members | Vec<T::AccountId> |
Python
call = substrate.compose_call(
'TechnicalMembership', 'reset_members', {'members': ['AccountId']}
)
set_prime
Set the prime member. Must be a current member.
May only be called from T::PrimeOrigin.
Attributes
| Name | Type |
|---|---|
| who | AccountIdLookupOf<T> |
Python
call = substrate.compose_call(
'TechnicalMembership', 'set_prime', {
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
swap_member
Swap out one member remove for another add.
May only be called from T::SwapOrigin.
Prime membership is not passed from remove to add, if extant.
Attributes
| Name | Type |
|---|---|
| remove | AccountIdLookupOf<T> |
| add | AccountIdLookupOf<T> |
Python
call = substrate.compose_call(
'TechnicalMembership', 'swap_member', {
'add': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'remove': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
Events
Dummy
Phantom member, never used.
Attributes
No attributes
KeyChanged
One of the members' keys changed.
Attributes
No attributes
MemberAdded
The given member was added; see the transaction for who.
Attributes
No attributes
MemberRemoved
The given member was removed; see the transaction for who.
Attributes
No attributes
MembersReset
The membership was reset; see the transaction for who the new set is.
Attributes
No attributes
MembersSwapped
Two members were swapped; see the transaction for who.
Attributes
No attributes
Storage functions
Members
The current membership, stored as an ordered Vec.
Python
result = substrate.query(
'TechnicalMembership', 'Members', []
)
Return value
['AccountId']
Prime
The current prime member, if one exists.
Python
result = substrate.query(
'TechnicalMembership', 'Prime', []
)
Return value
'AccountId'
Errors
AlreadyMember
Already a member.
NotMember
Not a member.
TooManyMembers
Too many members.
Timestamp
Calls
set
Set the current time.
This call should be invoked exactly once per block. It will panic at the finalization phase, if this call hasn't been invoked by that time.
The timestamp should be greater than the previous one by the amount specified by
MinimumPeriod.
The dispatch origin for this call must be Inherent.
# <weight>
- O(1) (Note that implementations of OnTimestampSet must also be O(1))
- 1 storage read and 1 storage mutation (codec O(1)). (because of DidUpdate::take in
on_finalize)
- 1 event handler on_timestamp_set. Must be O(1).
# </weight>
Attributes
| Name | Type |
|---|---|
| now | T::Moment |
Python
call = substrate.compose_call(
'Timestamp', 'set', {'now': 'u64'}
)
Storage functions
DidUpdate
Did the timestamp get updated in this block?
Python
result = substrate.query(
'Timestamp', 'DidUpdate', []
)
Return value
'bool'
Now
Current time for the current block.
Python
result = substrate.query(
'Timestamp', 'Now', []
)
Return value
'u64'
Constants
MinimumPeriod
The minimum period between blocks. Beware that this is different to the expected period that the block production apparatus provides. Your chosen consensus system will generally work with this to determine a sensible block time. e.g. For Aura, it will be double this period on default settings.
Value
6000
Python
constant = substrate.get_constant('Timestamp', 'MinimumPeriod')
TransactionPayment
Events
TransactionFeePaid
A transaction fee actual_fee, of which tip was added to the minimum inclusion fee,
has been paid by who.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| actual_fee | BalanceOf<T> |
u128 |
| tip | BalanceOf<T> |
u128 |
Storage functions
NextFeeMultiplier
Python
result = substrate.query(
'TransactionPayment', 'NextFeeMultiplier', []
)
Return value
'u128'
StorageVersion
Python
result = substrate.query(
'TransactionPayment', 'StorageVersion', []
)
Return value
('V1Ancient', 'V2')
Constants
OperationalFeeMultiplier
A fee mulitplier for Operational extrinsics to compute "virtual tip" to boost their
priority
This value is multipled by the final_fee to obtain a "virtual tip" that is later
added to a tip component in regular priority calculations.
It means that a Normal transaction can front-run a similarly-sized Operational
extrinsic (with no tip), by including a tip value greater than the virtual tip.
``rust,ignore
// ForNormal`
let priority = priority_calc(tip);
// For Operational
let virtual_tip = (inclusion_fee + tip) * OperationalFeeMultiplier;
let priority = priority_calc(tip + virtual_tip);
```
Note that since we use final_fee the multiplier applies also to the regular tip
sent with the transaction. So, not only does the transaction get a priority bump based
on the inclusion_fee, but we also amplify the impact of tips applied to Operational
transactions.
Value
5
Python
constant = substrate.get_constant('TransactionPayment', 'OperationalFeeMultiplier')
UnknownTokens
Events
Deposited
Deposit success.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset | MultiAsset |
{'id': {'Concrete': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::68', 'scale_info::68'), 'X3': ('scale_info::68', 'scale_info::68', 'scale_info::68'), 'X4': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X5': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X6': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X7': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X8': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68')}}, 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}} |
| who | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
Withdrawn
Withdraw success.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset | MultiAsset |
{'id': {'Concrete': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::68', 'scale_info::68'), 'X3': ('scale_info::68', 'scale_info::68', 'scale_info::68'), 'X4': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X5': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X6': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X7': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X8': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68')}}, 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}} |
| who | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
Errors
BalanceOverflow
The operation will cause balance to overflow.
BalanceTooLow
The balance is too low.
UnhandledAsset
Unhandled asset.
Utility
Calls
as_derivative
Send a call through an indexed pseudonym of the sender.
Filter from origin are passed along. The call will be dispatched with an origin which use the same filter as the origin of this call.
NOTE: If you need to ensure that any account-based filtering is not honored (i.e.
because you expect proxy to have been used prior in the call stack and you do not want
the call restrictions to apply to any sub-accounts), then use as_multi_threshold_1
in the Multisig pallet instead.
NOTE: Prior to version *12, this was called as_limited_sub.
The dispatch origin for this call must be Signed.
Attributes
| Name | Type |
|---|---|
| index | u16 |
| call | Box<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Utility', 'as_derivative', {'call': 'Call', 'index': 'u16'}
)
batch
Send a batch of dispatch calls.
May be called from any origin except None.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then the calls are dispatched without checking origin filter. (This
includes bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
This will return Ok in all circumstances. To determine the success of the batch, an
event is deposited. If a call failed and the batch was interrupted, then the
BatchInterrupted event is deposited, along with the number of successful calls made
and the error of the failed call. If all were successful, then the BatchCompleted
event is deposited.
Attributes
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Utility', 'batch', {'calls': ['Call']}
)
batch_all
Send a batch of dispatch calls and atomically execute them. The whole transaction will rollback and fail if any of the calls failed.
May be called from any origin except None.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then the calls are dispatched without checking origin filter. (This
includes bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
Attributes
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Utility', 'batch_all', {'calls': ['Call']}
)
dispatch_as
Dispatches a function call with a provided origin.
The dispatch origin for this call must be Root.
# <weight>
- O(1).
- Limited storage reads.
- One DB write (event).
- Weight of derivative call execution + T::WeightInfo::dispatch_as().
# </weight>
Attributes
| Name | Type |
|---|---|
| as_origin | Box<T::PalletsOrigin> |
| call | Box<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Utility', 'dispatch_as', {
'as_origin': {
'system': {
'None': None,
'Root': None,
'Signed': 'AccountId',
},
None: None,
'Council': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'CumulusXcm': {
'Relay': None,
'SiblingParachain': 'u32',
},
'PolkadotXcm': {
'Response': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
},
'call': 'Call',
}
)
force_batch
Send a batch of dispatch calls.
Unlike batch, it allows errors and won't interrupt.
May be called from any origin except None.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then the calls are dispatch without checking origin filter. (This
includes bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
Attributes
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::RuntimeCall> |
Python
call = substrate.compose_call(
'Utility', 'force_batch', {'calls': ['Call']}
)
Events
BatchCompleted
Batch of dispatches completed fully with no error.
Attributes
No attributes
BatchCompletedWithErrors
Batch of dispatches completed but has errors.
Attributes
No attributes
BatchInterrupted
Batch of dispatches did not complete fully. Index of first failing dispatch given, as well as the error.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | u32 |
u32 |
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
DispatchedAs
A call was dispatched.
Attributes
| Name | Type | Composition |
|---|---|---|
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None}} |
ItemCompleted
A single item within a Batch of dispatches has completed with no error.
Attributes
No attributes
ItemFailed
A single item within a Batch of dispatches has completed with error.
Attributes
| Name | Type | Composition |
|---|---|---|
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer'), 'Exhausted': None, 'Corruption': None, 'Unavailable': None} |
Constants
batched_calls_limit
The limit on the number of batched calls.
Value
10922
Python
constant = substrate.get_constant('Utility', 'batched_calls_limit')
Errors
TooManyCalls
Too many calls batched.
Vesting
Calls
claim
Attributes
No attributes
Python
call = substrate.compose_call(
'Vesting', 'claim', {}
)
claim_for
Attributes
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Vesting', 'claim_for', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
update_vesting_schedules
Attributes
| Name | Type |
|---|---|
| who | <T::Lookup as StaticLookup>::Source |
| vesting_schedules | Vec<VestingScheduleOf<T>> |
Python
call = substrate.compose_call(
'Vesting', 'update_vesting_schedules', {
'vesting_schedules': [
{
'per_period': 'u128',
'period': 'u32',
'period_count': 'u32',
'start': 'u32',
},
],
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
}
)
vested_transfer
Attributes
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
| schedule | VestingScheduleOf<T> |
Python
call = substrate.compose_call(
'Vesting', 'vested_transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': (),
'Raw': 'Bytes',
},
'schedule': {
'per_period': 'u128',
'period': 'u32',
'period_count': 'u32',
'start': 'u32',
},
}
)
Events
Claimed
Claimed vesting.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
VestingScheduleAdded
Added new vesting schedule.
Attributes
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| vesting_schedule | VestingScheduleOf<T> |
{'start': 'u32', 'period': 'u32', 'period_count': 'u32', 'per_period': 'u128'} |
VestingSchedulesUpdated
Updated vesting schedules.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
Storage functions
VestingSchedules
Vesting schedules of an account.
VestingSchedules: map AccountId => Vec<VestingSchedule>
Python
result = substrate.query(
'Vesting', 'VestingSchedules', ['AccountId']
)
Return value
[
{
'per_period': 'u128',
'period': 'u32',
'period_count': 'u32',
'start': 'u32',
},
]
Constants
MinVestedTransfer
The minimum amount transferred to call vested_transfer.
Value
10000000000000000000
Python
constant = substrate.get_constant('Vesting', 'MinVestedTransfer')
Errors
AmountLow
The vested transfer amount is too low
InsufficientBalanceToLock
Insufficient amount of balance to lock
MaxVestingSchedulesExceeded
Failed because the maximum vesting schedules was exceeded
TooManyVestingSchedules
This account have too many vesting schedules
ZeroVestingPeriod
Vesting period is zero
ZeroVestingPeriodCount
Number of vests is zero
VestingRegistrar
Calls
claim_batch
Batch claim for vested accounts
Attributes
| Name | Type |
|---|---|
| accounts | VestedAccounts<T> |
Python
call = substrate.compose_call(
'VestingRegistrar', 'claim_batch', {
'accounts': [
{
'account_id': 'AccountId',
'amount': 'u128',
},
],
}
)
force_vest_all_schedules
For all registered accounts, it sets the vesting schedule expiration to the next block number.
This is a privileged call and can only be called by the root origin.
It simply updates each schedule registered for account to expire in the next block.
Attributes
| Name | Type |
|---|---|
| accounts | VestedAccounts<T> |
Python
call = substrate.compose_call(
'VestingRegistrar', 'force_vest_all_schedules', {
'accounts': [
{
'account_id': 'AccountId',
'amount': 'u128',
},
],
}
)
register_batch
Register a batch of accounts and their vesting amounts.
Attributes
| Name | Type |
|---|---|
| accounts | VestedAccounts<T> |
| start_block_number | BlockNumberFor<T> |
| period | BlockNumberFor<T> |
| period_count | u32 |
Python
call = substrate.compose_call(
'VestingRegistrar', 'register_batch', {
'accounts': [
{
'account_id': 'AccountId',
'amount': 'u128',
},
],
'period': 'u32',
'period_count': 'u32',
'start_block_number': 'u32',
}
)
Errors
InvalidPeriodCount
Period count is invalid.
InvalidVestedAmount
Vested amount is invalid..
XTokens
Calls
transfer
Transfer native currencies.
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| currency_id | T::CurrencyId |
| amount | T::Balance |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python
call = substrate.compose_call(
'XTokens', 'transfer', {
'amount': 'u128',
'currency_id': {
'collection_id': 'u128',
'token_id': 'u128',
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
transfer_multiasset
Transfer MultiAsset.
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| asset | Box<VersionedMultiAsset> |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python
call = substrate.compose_call(
'XTokens', 'transfer_multiasset', {
'asset': {
'V0': {
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
'V1': {
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
},
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
transfer_multiasset_with_fee
Transfer MultiAsset specifying the fee and amount as separate.
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
fee is the multiasset to be spent to pay for execution in
destination chain. Both fee and amount will be subtracted form the
callers balance For now we only accept fee and asset having the same
MultiLocation id.
If fee is not high enough to cover for the execution costs in the
destination chain, then the assets will be trapped in the
destination chain
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| asset | Box<VersionedMultiAsset> |
| fee | Box<VersionedMultiAsset> |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python
call = substrate.compose_call(
'XTokens', 'transfer_multiasset_with_fee', {
'asset': {
'V0': {
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
'V1': {
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
},
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
'fee': {
'V0': {
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
'V1': {
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::68',
'scale_info::68',
),
'X3': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X4': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X5': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X6': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X7': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
'X8': (
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
'scale_info::68',
),
},
'parents': 'u8',
},
},
},
},
}
)
transfer_multiassets
Transfer several MultiAsset specifying the item to be used as fee
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
fee_item is index of the MultiAssets that we want to use for
payment
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| assets | Box<VersionedMultiAssets> |
| fee_item | u32 |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python
call = substrate.compose_call(
'XTokens', 'transfer_multiassets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::100',
'scale_info::100',
),
'X3': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X4': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X5': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X6': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X7': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
'X8': (
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
'scale_info::100',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::67',
'parents': 'u8',
},
},
},
],
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
'fee_item': 'u32',
}
)
transfer_multicurrencies
Transfer several currencies specifying the item to be used as fee
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
fee_item is index of the currencies tuple that we want to use for
payment
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| currencies | Vec<(T::CurrencyId, T::Balance)> |
| fee_item | u32 |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python
call = substrate.compose_call(
'XTokens', 'transfer_multicurrencies', {
'currencies': [
(
{
'collection_id': 'u128',
'token_id': 'u128',
},
'u128',
),
],
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
'fee_item': 'u32',
}
)
transfer_with_fee
Transfer native currencies specifying the fee and amount as separate.
dest_weight_limit is the weight for XCM execution on the dest
chain, and it would be charged from the transferred assets. If set
below requirements, the execution may fail and assets wouldn't be
received.
fee is the amount to be spent to pay for execution in destination
chain. Both fee and amount will be subtracted form the callers
balance.
If fee is not high enough to cover for the execution costs in the
destination chain, then the assets will be trapped in the
destination chain
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| currency_id | T::CurrencyId |
| amount | T::Balance |
| fee | T::Balance |
| dest | Box<VersionedMultiLocation> |
| dest_weight_limit | WeightLimit |
Python
call = substrate.compose_call(
'XTokens', 'transfer_with_fee', {
'amount': 'u128',
'currency_id': {
'collection_id': 'u128',
'token_id': 'u128',
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::70',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::70',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::70',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::73',
'part': 'scale_info::74',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
'fee': 'u128',
}
)
Events
TransferredMultiAssets
Transferred MultiAsset with fee.
Attributes
| Name | Type | Composition |
|---|---|---|
| sender | T::AccountId |
AccountId |
| assets | MultiAssets |
[{'id': {'Concrete': {'parents': 'u8', 'interior': 'scale_info::67'}, 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}}] |
| fee | MultiAsset |
{'id': {'Concrete': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::68', 'scale_info::68'), 'X3': ('scale_info::68', 'scale_info::68', 'scale_info::68'), 'X4': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X5': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X6': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X7': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68'), 'X8': ('scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68', 'scale_info::68')}}, 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}} |
| dest | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::70', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::70', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::70', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::73', 'part': 'scale_info::74'}})}} |
Constants
BaseXcmWeight
Base XCM weight.
The actually weight for an XCM message is T::BaseXcmWeight +
T::Weigher::weight(&msg).
Value
100000000
Python
constant = substrate.get_constant('XTokens', 'BaseXcmWeight')
SelfLocation
Self chain location.
Value
{'interior': 'Here', 'parents': 0}
Python
constant = substrate.get_constant('XTokens', 'SelfLocation')
Errors
AssetHasNoReserve
Asset has no reserve location.
AssetIndexNonExistent
The specified index does not exist in a MultiAssets struct.
BadVersion
The version of the Versioned value used is not able to be
interpreted.
CannotReanchor
Could not re-anchor the assets to declare the fees for the destination chain.
DestinationNotInvertible
The destination MultiLocation provided cannot be inverted.
DistinctReserveForAssetAndFee
We tried sending distinct asset and fee but they have different reserve chains.
FeeNotEnough
Fee is not enough.
InvalidAncestry
Could not get ancestry of asset reserve location.
InvalidAsset
The MultiAsset is invalid.
InvalidDest
Invalid transfer destination.
MinXcmFeeNotDefined
MinXcmFee not registered for certain reserve location
NotCrossChainTransfer
Not cross-chain transfer.
NotCrossChainTransferableCurrency
Currency is not cross-chain transferable.
NotSupportedMultiLocation
Not supported MultiLocation
TooManyAssetsBeingSent
The number of assets to be sent is over the maximum.
UnweighableMessage
The message's weight could not be determined.
XcmExecutionFailed
XCM execution failed.
ZeroAmount
The transfering asset amount is zero.
ZeroFee
The fee is zero.
XcmpQueue
Calls
resume_xcm_execution
Resumes all XCM executions for the XCMP queue.
Note that this function doesn't change the status of the in/out bound channels.
origin: Must passControllerOrigin.
Attributes
No attributes
Python
call = substrate.compose_call(
'XcmpQueue', 'resume_xcm_execution', {}
)
service_overweight
Services a single overweight XCM.
origin: Must passExecuteOverweightOrigin.index: The index of the overweight XCM to serviceweight_limit: The amount of weight that XCM execution may take.
Errors:
- BadOverweightIndex: XCM under index is not found in the Overweight storage map.
- BadXcm: XCM under index cannot be properly decoded into a valid XCM format.
- WeightOverLimit: XCM execution may use greater weight_limit.
Events:
- OverweightServiced: On success.
Attributes
| Name | Type |
|---|---|
| index | OverweightIndex |
| weight_limit | XcmWeight |
Python
call = substrate.compose_call(
'XcmpQueue', 'service_overweight', {
'index': 'u64',
'weight_limit': 'u64',
}
)
suspend_xcm_execution
Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.
origin: Must passControllerOrigin.
Attributes
No attributes
Python
call = substrate.compose_call(
'XcmpQueue', 'suspend_xcm_execution', {}
)
update_drop_threshold
Overwrites the number of pages of messages which must be in the queue after which we drop any further messages from the channel.
origin: Must passRoot.new: Desired value forQueueConfigData.drop_threshold
Attributes
| Name | Type |
|---|---|
| new | u32 |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_drop_threshold', {'new': 'u32'}
)
update_resume_threshold
Overwrites the number of pages of messages which the queue must be reduced to before it signals that message sending may recommence after it has been suspended.
origin: Must passRoot.new: Desired value forQueueConfigData.resume_threshold
Attributes
| Name | Type |
|---|---|
| new | u32 |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_resume_threshold', {'new': 'u32'}
)
update_suspend_threshold
Overwrites the number of pages of messages which must be in the queue for the other side to be told to suspend their sending.
origin: Must passRoot.new: Desired value forQueueConfigData.suspend_value
Attributes
| Name | Type |
|---|---|
| new | u32 |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_suspend_threshold', {'new': 'u32'}
)
update_threshold_weight
Overwrites the amount of remaining weight under which we stop processing messages.
origin: Must passRoot.new: Desired value forQueueConfigData.threshold_weight
Attributes
| Name | Type |
|---|---|
| new | XcmWeight |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_threshold_weight', {'new': 'u64'}
)
update_weight_restrict_decay
Overwrites the speed to which the available weight approaches the maximum weight. A lower number results in a faster progression. A value of 1 makes the entire weight available initially.
origin: Must passRoot.new: Desired value forQueueConfigData.weight_restrict_decay.
Attributes
| Name | Type |
|---|---|
| new | XcmWeight |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_weight_restrict_decay', {'new': 'u64'}
)
update_xcmp_max_individual_weight
Overwrite the maximum amount of weight any individual message may consume. Messages above this weight go into the overweight queue and may only be serviced explicitly.
origin: Must passRoot.new: Desired value forQueueConfigData.xcmp_max_individual_weight.
Attributes
| Name | Type |
|---|---|
| new | XcmWeight |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_xcmp_max_individual_weight', {'new': 'u64'}
)
Events
BadFormat
Bad XCM format used.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
BadVersion
Bad XCM version used.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
Fail
Some XCM failed.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
| error | XcmError |
{'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None} |
| weight | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
OverweightEnqueued
An XCM exceeded the individual message weight budget.
Attributes
| Name | Type | Composition |
|---|---|---|
| sender | ParaId |
u32 |
| sent_at | RelayBlockNumber |
u32 |
| index | OverweightIndex |
u64 |
| required | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
OverweightServiced
An XCM from the overweight queue was executed with the given actual weight used.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | OverweightIndex |
u64 |
| used | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
Success
Some XCM was executed ok.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
| weight | Weight |
{'ref_time': 'u64', 'proof_size': 'u64'} |
UpwardMessageSent
An upward message was sent to the relay chain.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
XcmpMessageSent
An HRMP message was sent to a sibling parachain.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
Storage functions
InboundXcmpMessages
Inbound aggregate XCMP messages. It can only be one per ParaId/block.
Python
result = substrate.query(
'XcmpQueue', 'InboundXcmpMessages', ['u32', 'u32']
)
Return value
'Bytes'
InboundXcmpStatus
Status of the inbound XCMP channels.
Python
result = substrate.query(
'XcmpQueue', 'InboundXcmpStatus', []
)
Return value
[
{
'message_metadata': [
(
'u32',
(
'ConcatenatedVersionedXcm',
'ConcatenatedEncodedBlob',
'Signals',
),
),
],
'sender': 'u32',
'state': ('Ok', 'Suspended'),
},
]
OutboundXcmpMessages
The messages outbound in a given XCMP channel.
Python
result = substrate.query(
'XcmpQueue', 'OutboundXcmpMessages', ['u32', 'u16']
)
Return value
'Bytes'
OutboundXcmpStatus
The non-empty XCMP channels in order of becoming non-empty, and the index of the first
and last outbound message. If the two indices are equal, then it indicates an empty
queue and there must be a non-Ok OutboundStatus. We assume queues grow no greater
than 65535 items. Queue indices for normal messages begin at one; zero is reserved in
case of the need to send a high-priority signal message this block.
The bool is true if there is a signal message waiting to be sent.
Python
result = substrate.query(
'XcmpQueue', 'OutboundXcmpStatus', []
)
Return value
[
{
'first_index': 'u16',
'last_index': 'u16',
'recipient': 'u32',
'signals_exist': 'bool',
'state': ('Ok', 'Suspended'),
},
]
Overweight
The messages that exceeded max individual message weight budget.
These message stay in this storage map until they are manually dispatched via
service_overweight.
Python
result = substrate.query(
'XcmpQueue', 'Overweight', ['u64']
)
Return value
('u32', 'u32', 'Bytes')
OverweightCount
The number of overweight messages ever recorded in Overweight. Also doubles as the next
available free overweight index.
Python
result = substrate.query(
'XcmpQueue', 'OverweightCount', []
)
Return value
'u64'
QueueConfig
The configuration which controls the dynamics of the outbound queue.
Python
result = substrate.query(
'XcmpQueue', 'QueueConfig', []
)
Return value
{
'drop_threshold': 'u32',
'resume_threshold': 'u32',
'suspend_threshold': 'u32',
'threshold_weight': {'proof_size': 'u64', 'ref_time': 'u64'},
'weight_restrict_decay': {'proof_size': 'u64', 'ref_time': 'u64'},
'xcmp_max_individual_weight': {'proof_size': 'u64', 'ref_time': 'u64'},
}
QueueSuspended
Whether or not the XCMP queue is suspended from executing incoming XCMs or not.
Python
result = substrate.query(
'XcmpQueue', 'QueueSuspended', []
)
Return value
'bool'
SignalMessages
Any signal messages waiting to be sent.
Python
result = substrate.query(
'XcmpQueue', 'SignalMessages', ['u32']
)
Return value
'Bytes'
Errors
BadOverweightIndex
Bad overweight index.
BadXcm
Bad XCM data.
BadXcmOrigin
Bad XCM origin.
FailedToSend
Failed to send XCM message.
WeightOverLimit
Provided weight is possibly not enough to execute the message.